| section | Usage |
|---|---|
| title | Next.js |
| slug | /docs/next/ |
| order | 45 |
Configure your Next.js project to import SVG as React components in your application.
npm install --save-dev @svgr/webpack
# or use yarn
yarn add --dev @svgr/webpackUsing SVGR in Next.js is possible with @svgr/webpack.
next.config.js
module.exports = {
webpack(config) {
// Grab the existing rule that handles SVG imports
const fileLoaderRule = config.module.rules.find(
(rule) => rule.test && rule.test instanceof RegExp && rule.test.test(".svg")
);
config.module.rules.push(
// Reapply the existing rule, but only for svg imports ending in ?url
{
...fileLoaderRule,
test: /\.svg$/i,
resourceQuery: /url/, // *.svg?url
},
// Convert all other *.svg imports to React components
{
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
resourceQuery: { not: /url/ }, // exclude if *.svg?url
use: ['@svgr/webpack'],
},
)
// Modify the file loader rule to ignore *.svg, since we have it handled now.
fileLoaderRule.exclude = /\.svg$/i
return config
},
// ...other config
}Your code
import Star from './star.svg'
const Example = () => (
<div>
<Star />
</div>
)Or, using the classic (URL) import:
import Image from 'next/image'
import starUrl from './star.svg?url'
const Example = () => (
<div>
<Image src={starUrl} />
</div>
)Please refer to SVGR webpack guide for advanced use cases.