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
WVU Online | Going Back to School at 50
Class Components vs Functional Components in React
Average Jonas Wife
Fat Hog Prices Today
Soap2Day Autoplay
La connexion à Mon Compte
Computer Repair Tryon North Carolina
Cosentyx® 75 mg Injektionslösung in einer Fertigspritze - PatientenInfo-Service
Visustella Battle Core
Joe Gorga Zodiac Sign
Youtube Combe
World of White Sturgeon Caviar: Origins, Taste & Culinary Uses
Premier Boating Center Conroe
Gina's Pizza Port Charlotte Fl
Hssn Broadcasts
Robert Malone é o inventor da vacina mRNA e está certo sobre vacinação de crianças #boato
Keniakoop
Breakroom Bw
Pricelinerewardsvisa Com Activate
Convert 2024.33 Usd
Directions To Advance Auto
Roof Top Snipers Unblocked
The best TV and film to watch this week - A Very Royal Scandal to Tulsa King
Rondom Ajax: ME grijpt in tijdens protest Ajax-fans bij hoofdbureau politie
Craigslist Missoula Atv
Iu Spring Break 2024
Roane County Arrests Today
Aliciabibs
Directions To Nearest T Mobile Store
Mandy Rose - WWE News, Rumors, & Updates
Creed 3 Showtimes Near Island 16 Cinema De Lux
Lesson 1.1 Practice B Geometry Answers
Log in or sign up to view
Purdue Timeforge
Abga Gestation Calculator
Wisconsin Volleyball Team Leaked Uncovered
Life Insurance Policies | New York Life
Phone number detective
Plato's Closet Mansfield Ohio
Texters Wish You Were Here
Agematch Com Member Login
11301 Lakeline Blvd Parkline Plaza Ctr Ste 150
60 X 60 Christmas Tablecloths
Reese Witherspoon Wiki
התחבר/י או הירשם/הירשמי כדי לראות.
Cl Bellingham
Wolf Of Wallstreet 123 Movies
300+ Unique Hair Salon Names 2024
Every Type of Sentinel in the Marvel Universe
San Diego Padres Box Scores
Loss Payee And Lienholder Addresses And Contact Information Updated Daily Free List Bank Of America
Die 10 wichtigsten Sehenswürdigkeiten in NYC, die Sie kennen sollten
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.