Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.12 KB

File metadata and controls

55 lines (37 loc) · 1.12 KB
sidebar_position slug
7
/api/plugins/@docusaurus/plugin-svgr

📦 plugin-svgr

import APITable from '@site/src/components/APITable';

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

Installation {#installation}

npm install --save @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 {#configuration}

Accepted fields:

<APITable>
Name Type Default Description
svgrConfig object {} The SVGR config options, forwarded as is
</APITable>

Example configuration {#ex-config}

You can configure this plugin through plugin options.

// Preset Options: svgr
// Plugin Options: @docusaurus/plugin-svgr

const config = {
  svgrConfig: {
    /* SVGR config */
  },
};