-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
- npm i -D @svgr/webpack 설치
- next.config.js 설정
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
webpack: (config) => {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ['@svgr/webpack'],
});
return config;
},
};
module.exports = nextConfig;
- 컴포넌트 형식으로 사용가능
import BUS from './image/bus.svg'
...
<BUS />
...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels