Next.js - Parsing error: Cannot find module 'next/babel' 오류 해결

돌리의 하루·2023년 7월 25일
0

next.js로 프로젝트를 시작하는데 parsing error가 발생했다.

Parsing Error: Cannot find module 'next/babel'

😋해결방법

루트에 .babelrc 파일을 생성하고,

코드를 작성해준다.

{
  "presets": ["next/babel"],
  "plugins": []
}

그리고, .eslintrc.json에 아래와 같이 코드를 넣어준다.

{
  "extends": ["next/babel","next/core-web-vitals"]
}

이렇게 하면 오류 해결~!!!!

profile
진화중인 돌리입니다 :>

0개의 댓글