[Next.js] cannot find module 'next/babel' 에러

Joy·2023년 3월 2일
0

NextJs

목록 보기
1/1
post-thumbnail

Next.js - babel 에러

parsing error: cannot find module 'next/babel'

next.js를 실행 중 이런 에러를 맞이했다.
이런 경우에는 두가지 처리를 해주면 되는데,

.eslintrc.json 파일로 가서 이렇게 수정을 해주고

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

root에 .babelrc 파일을 생성한 후 이 코드를 넣어주면 된다! 😈

{
  "presets": ["next/babel"],
}
profile
새로운 거에 진심인 사람

0개의 댓글