React
[REACT] Error: cannot find module error 해결
잔소리대마왕
2023. 2. 16. 15:48
react 프로젝트를 실행할 때 간혹 Error: Cannot find module .... 라는 오류를 보게 됩니다.
해결방법
# 명령어로 캐시를 삭제
npm cache clean --force
# node_modules 폴더 삭제
# package-lock.json 파일 삭제
# 재설치
npm install