📦 plugin-svgr
An SVGR plugin to transform SVG files into React components automatically at build time.
Installation
- npm
- Yarn
- pnpm
npm install --save @docusaurus/plugin-svgr
yarn add @docusaurus/plugin-svgr
pnpm add @docusaurus/plugin-svgr
tip
If you use the preset @docusaurus/preset-classic
, you don't need to install this plugin as a dependency.
You can configure this plugin through the preset options.
Configuration
Campos aceitos:
Nome | Type | Padrão | Descrição |
---|---|---|---|
svgrConfig | object | {} | The SVGR config options, forwarded as is |
Example configuration
You can configure this plugin through plugin options.
- Opções de predefinição
- Opções do plugin
Se você usar uma predefinição, configure este plugin através do opções de predefinição:
docusaurus.config.js
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
svgr: {
svgrConfig: {
/* SVGR config */
},
},
},
],
],
};
Se você estiver usando um plugin independente, forneça opções diretamente para o plugin:
docusaurus.config.js
module.exports = {
plugins: [
[
'@docusaurus/plugin-svgr',
{
svgrConfig: {
/* SVGR config */
},
},
],
],
};