[Error] resolve 에러

Yeongsan Son·2021년 6월 10일
0

next를 사용한 프로젝트를 진행하면서 다음과 같은 오류를 만났다.

Can't resolve '{프로젝트 경로}/node_modules/next/node_modules/@babel/runtime/helpers/esm/defineProperty'

해결 방법은 의외로 간단했다.

npm i @babel/runtime 패키지를 설치해주면 해결이 됐다.

이 방법으로 해결이 안된다면 아래의 상황에 맞는 방법으로 접근하길 권장한다.

  • npm i @babel/runtime@7.12.1 : (which is the previous version), build now succeeds
  • npm i @babel/runtime@latest : (which is 7.12.5), build still succeeds
  • npm r @babel/runtime : (it's removed from package.json but still installed as it's a nested dependency), build still succeeds
profile
매몰되지 않는 개발자가 되자

0개의 댓글