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
'개발일지 > NextJS' 카테고리의 다른 글
NextJS에서 API 디렉토리를 사용할 수 없는 이유 (0) | 2023.05.01 |
---|---|
TypeError: (0 , marked__WEBPACK_IMPORTED_MODULE_7__.default) is not a function (0) | 2023.03.18 |
Nextjs Link와 useRouter의 차이 (0) | 2023.03.18 |
Next JS에서 react-responsive 적용하기 (0) | 2022.12.18 |
NextJs에서의 로딩 처리 (0) | 2022.11.29 |
댓글