본문 바로가기
dev/fe

nextJS svg 불러오기가 안될 때

by imnotdeveloper 2023. 4. 26.
반응형
/** @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;
반응형

댓글