개발일지/NextJS
prop `classname` did not match. with styled-components
한삐
2023. 5. 1. 12:25
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