📦 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
ヒント
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
Accepted fields:
名前 | Type | Default | 説明 |
---|---|---|---|
svgrConfig | object | {} | The SVGR config options, forwarded as is |
Example configuration
You can configure this plugin through plugin options.
- 設定オプション
- プラグイン
プリセットを使用する場合は、 設定オプション を介してこのプラグインを設定してください。
docusaurus.config.js
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
svgr: {
svgrConfig: {
/* SVGR config */
},
},
},
],
],
};
スタンドアロンプラグインを使用している場合は、プラグインに直接オプションを指定します。
docusaurus.config.js
module.exports = {
plugins: [
[
'@docusaurus/plugin-svgr',
{
svgrConfig: {
/* SVGR config */
},
},
],
],
};