반응형
Parsing error: Cannot find module 'next/babel' 해결방법
Parsing error: Cannot find module 'next/babel' ...
해결 방법
프로젝트 루트 경로에 아래 두 파일을 생성 및 수정해준다.
.babelrc
{
"presets": ["next/babel"],
"plugins": []
}
.eslintrc.json
{
"extends": ["next/babel","next/core-web-vitals"]
}
babel 파싱 에러가 사라진 것을 확인할 수 있다.
반응형
댓글