跳到主要内容
版本:Canary 🚧

📦 plugin-svgr

An SVGR plugin to transform SVG files into React components automatically at build time.

Installation

npm install --save @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

接受的字段:

参数类型默认值描述
svgrConfigobject{}The SVGR config options, forwarded as is

Example configuration

你可以通过插件选项来配置这个插件。

如果你使用预设,你可以通过预设选项配置这个插件:

docusaurus.config.js
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
svgr: {
svgrConfig: {
/* SVGR config */
},
},
},
],
],
};