Files
zin-tools/next.config.mjs
2024-02-02 10:05:16 +05:00

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