Next.js - SVGR (2024)

Table of Contents
Install Usage TypeScript

Configure your Next.js project to import SVG as React components in your application.

Install

npm install --save-dev @svgr/webpack

# or use yarn

yarn add --dev @svgr/webpack

Usage

Using 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?.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: fileLoaderRule.issuer,

resourceQuery: { not: [...fileLoaderRule.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.

TypeScript

Using SVGR with TypeScript support.

Type decleration

Add a custom type decleration file (e.g. svgr.d.ts) to the root of your repo.

declare module '*.svg' {

import { FC, SVGProps } from 'react'

const content: FC<SVGProps<SVGElement>>

export default content

}

declare module '*.svg?url' {

const content: any

export default content

}

tsconfig.json

Add the type decleration file to your tsconfig.json's include array. Ensure it's the first item.

{

"include": [

"svgr.d.ts",

"next-env.d.ts",

"**/*.ts",

"**/*.tsx",

".next/types/**/*.ts"

]

// ...other config

}

Edit this page on GitHub
Next.js - SVGR (2024)
Top Articles
Warren Buffett Owns Snowflake Stock, but You Probably Shouldn't
Where to Buy Bitcoin With Gift Card - Convert Gift Card To BTC
NYT Mini Crossword today: puzzle answers for Tuesday, September 17 | Digital Trends
Koopa Wrapper 1 Point 0
Palm Coast Permits Online
Erika Kullberg Wikipedia
³µ¿Â«»ÍÀÇ Ã¢½ÃÀÚ À̸¸±¸ ¸íÀÎ, ¹Ì±¹ Ķ¸®Æ÷´Ï¾Æ ÁøÃâ - ¿ù°£ÆÄ¿öÄÚ¸®¾Æ
Wmu Course Offerings
Chelsea player who left on a free is now worth more than Palmer & Caicedo
Mcoc Immunity Chart July 2022
Mawal Gameroom Download
WK Kellogg Co (KLG) Dividends
Hover Racer Drive Watchdocumentaries
Jet Ski Rental Conneaut Lake Pa
Clairememory Scam
Orlando Arrest and Public Records | Florida.StateRecords.org
California Department of Public Health
Local Collector Buying Old Motorcycles Z1 KZ900 KZ 900 KZ1000 Kawasaki - wanted - by dealer - sale - craigslist
Magicseaweed Capitola
[Birthday Column] Celebrating Sarada's Birthday on 3/31! Looking Back on the Successor to the Uchiha Legacy Who Dreams of Becoming Hokage! | NARUTO OFFICIAL SITE (NARUTO & BORUTO)
Theresa Alone Gofundme
Committees Of Correspondence | Encyclopedia.com
Craigslist Portland Oregon Motorcycles
The Menu Showtimes Near Regal Edwards Ontario Mountain Village
Forum Phun Extra
Vigoro Mulch Safe For Dogs
Rufus Benton "Bent" Moulds Jr. Obituary 2024 - Webb & Stephens Funeral Homes
12 Top-Rated Things to Do in Muskegon, MI
How do you get noble pursuit?
Jamielizzz Leaked
Kelley Fliehler Wikipedia
Franklin Villafuerte Osorio
Redding Activity Partners
Inmate Search Disclaimer – Sheriff
Nextdoor Myvidster
P3P Orthrus With Dodge Slash
Deleted app while troubleshooting recent outage, can I get my devices back?
404-459-1280
Giantess Feet Deviantart
Pill 44615 Orange
Craigs List Stockton
Michael Jordan: A timeline of the NBA legend
Nancy Pazelt Obituary
Orion Nebula: Facts about Earth’s nearest stellar nursery
This 85-year-old mom co-signed her daughter's student loan years ago. Now she fears the lender may take her house
Gon Deer Forum
The Blackening Showtimes Near Ncg Cinema - Grand Blanc Trillium
French Linen krijtverf van Annie Sloan
Oak Hill, Blue Owl Lead Record Finastra Private Credit Loan
Concentrix + Webhelp devient Concentrix
Jesus Calling Oct 6
Latest Posts
Article information

Author: Sen. Ignacio Ratke

Last Updated:

Views: 6408

Rating: 4.6 / 5 (56 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Sen. Ignacio Ratke

Birthday: 1999-05-27

Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

Phone: +2585395768220

Job: Lead Liaison

Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.