Notice
Recent Posts
Recent Comments
Archives
반응형
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Today
Total
01-09 05:35
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[Error] Module not found: Can't resolve 'styled-components' 에러 해결하기 본문

Programming/TypeScript

[Error] Module not found: Can't resolve 'styled-components' 에러 해결하기

aldrn29 2022. 6. 15. 00:57

에러 원인

Next.js + TypeScript 환경에서 styled-components를 설치하고 사용하려 하는데, Module not found: Can't resolve 'styled-components'라는 에러가 발생했다. 내 생각으론 현재 프로젝트가 TypeScript 환경이기 때문에 @types/styled-components만 설치하면 되는줄 알았지만, 이것은 타입을 정의한 파일일 뿐이였고... 정작 필요한 패키지는 안한 셈이였다.

 

에러 해결방법

필요한 패키지를 설치해주면 된다! 아주 간단했다~

$ yarn add styled-components

 

728x90
728x90
Comments