Next.js

Etc/Problem Solving

[Next.js] create-npx-app 설치 후 실행 오류 Couldn't find a 'pages' directory. Please create one under the project root

| 😱 오류내용 프로젝트 생성 후 실행 확인을 위해 npm run dev 를 했더니 또 오류가 발생했다. Error: > Couldn't find a 'pages' directory. Please create one under the project root | 💫 해결방안 Error: > Couldn't find a 'pages' directory. Please create one under the project root 일단 시키는 대로 'pages' 폴더를 만들고 다시 실행해본다. 일단 다음단계로 넘어가니 패스.. 이부분은 버전 문제도 있는것 같아서 따로 다시 해결 방법을 연계해서 올리도록 하겠다

Etc/Problem Solving

[Next.js] create-npx-app 설치 후 오류 Parsing error: Cannot find module 'next/babel'

npx create-next-app@latest 로 프로젝트를 설치하고 가장 먼저 마주한 것. ERROR ... | 😱 오류내용 설치 후 확인해보니 첫 줄 부터 빨간 줄이 쳐져있었다. Parsing error: Cannot find module 'next/babel' | 💫 해결방안 1. 프로젝트에 .babelrc 파일을 만들어 아래와 같이 작성한다. { "presets": ["next/babel"], "plugins": [] } 2. .eslintrc.json 파일을 아래 코드로 수정해준다. { "extends": ["next/babel", "next/core-web-vitals"] } [기존] [수정] 더이상 해당 오류가 발생하지 않는 것을 확인하였다. Parsing error: Cannot find..

개발하는 채찡
'Next.js' 태그의 글 목록