도영스 공간

[NextJS] styled-components Prop `className` did not match. 본문

TIL

[NextJS] styled-components Prop `className` did not match.

dogdogdodo 2023. 4. 26. 22:06
반응형

next js 를 13버전으로 업그이드 한 이후 이런 에러가 콘솔창에 떴다 !

 

해결방법

module.exports = {
	experimental: {
		forceSwcTransforms: true,
	},
	compiler: {
		styledComponents: true,
	},
};

//next.config.ts
파일에 아래의 값을 넣어주면 에러가 나지 않는다 !! 

	compiler: {
		styledComponents: true,
	},
728x90
반응형
Comments