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"],
}