✔ 문제
앱 생성 후 실행시키면 아래와 같은 오류 발생
Try building your app with 'next build' before starting the production server.
하지만 next build 를 입력하면 아래와 같은 다른 오류 발생
command not found: next
✔ 해결방법
npm run build -> npm run start
하면 성공적으로 실행된다.
참고
https://stackoverflow.com/questions/50947389/nextjs-cannot-find-a-valid-build-in-the-next-directory
'개발 > Next' 카테고리의 다른 글
Next.js middleware 에서 이전페이지 주소 확인 후 요청 처리 (0) | 2023.12.11 |
---|---|
Next + React + typescript 프로젝트 생성 명령어 (0) | 2023.11.11 |