도영스 공간
[NextJS] styled-components Prop `className` did not match. 본문
반응형
next js 를 13버전으로 업그이드 한 이후 이런 에러가 콘솔창에 떴다 !
해결방법
module.exports = {
experimental: {
forceSwcTransforms: true,
},
compiler: {
styledComponents: true,
},
};
//next.config.ts
파일에 아래의 값을 넣어주면 에러가 나지 않는다 !!
compiler: {
styledComponents: true,
},
728x90
반응형
'TIL' 카테고리의 다른 글
상단에 닿았을 때 헤더 색 투명, 스크롤 내리면 헤더색 흰색으로 (feat. react custom hook) (0) | 2023.07.04 |
---|---|
리액트 더보기 접기 기능구현 (0) | 2023.02.08 |
Comments