240305 개발일지 TIL - Error: ENOENT: no such file or directory, open '.next/BUILD_ID'

The Web On Everything·2024년 3월 5일
0

개발일지

목록 보기
254/269
mac@macui-MacBookPro react-ts-registration-form % yarn start
yarn run v1.22.19
warning ../../../../../package.json: No license field
$ next start
   ▲ Next.js 14.1.2
   - Local:        http://localhost:3000

[Error: ENOENT: no such file or directory, open '/Users/mac/Desktop/study/devcamp/week1/react-ts-registration-form/.next/BUILD_ID'] {
  errno: -2,
  code: 'ENOENT',
  syscall: 'open',
  path: '/Users/mac/Desktop/study/devcamp/week1/react-ts-registration-form/.next/BUILD_ID'
}
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

문제 발생

Next.js 프로젝트에서 yarn start로 실행 시 next/BUILD_ID 파일을 찾을 수 없다는 현상.

문제 원인

익숙하게 yarn start로 프로젝트를 실행해 확인하려고 했는데 당연하게도 Next.js 프로젝트이기때문에 프로덕션 모드가 아닌 개발 환경이라 빌드가 되지 않은 상태.

해결 방법

그래서 개발 환경에서 yarn dev로 컴파일링해서 확인하면 된다.

느낀 점

습관으로 인해 나도 모르게 yarn start를 항상 먼저 쳐서 이런 경우가 가끔 발생하게 된다;;

profile
오늘은 무슨 오류를 만날까?! 널 만나러 가는 길~ LOL

0개의 댓글