12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
webpack: config => {
|
|
config.module.rules.push({ test: /\.svg$/i, use: ['@svgr/webpack'] })
|
|
return config
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|