본문 바로가기
개발일지/NextJS

prop `classname` did not match. with styled-components

by 한삐 2023. 5. 1.
728x90

prop `classname` did not match. with styled-components 에러 해결 방법

 

Nextjs의 next.config를 수정해준다.

 

/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: false,
  compiler: {
    styledComponents: true, // 컴파일러 옵션 추가
  },
};

module.exports = nextConfig;
728x90

댓글