[Next.js]Parsing error: Cannot find module 'next/babel' 에러해결

gu·2023년 7월 18일
0

Next.js

목록 보기
2/13

❌ 에러 상황

노마드코드 next 강의를 들으며 next프로젝트를 생성했는데 export하는 과정에서 아래의 에러가 떴다.

Parsing error: Cannot find module 'next/babel'

✨ 해결

해당 에러는 VScode 파싱에러로 .eslintrc.json파일에서 코드를 수정해줘야 한다.

  • 기존

    {
    "extends": "next/core-web-vitals"
    }

  • 수정 후

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

3개의 댓글

comment-user-thumbnail
2023년 7월 18일

정말 잘 읽었습니다, 고맙습니다!

답글 달기
comment-user-thumbnail
2023년 7월 18일

아주 유익한 내용이네요!

답글 달기
comment-user-thumbnail
2023년 7월 18일

잘 봤습니다. 좋은 글 감사합니다.

답글 달기