Reputation: 1
▲ Next.js 14.0.1
[Error: ENOENT: no such file or directory, open 'C:\Users\User\Desktop\react app\new-react-app.next\BUILD_ID'] { errno: -4058, code: 'ENOENT', syscall: 'open', path: 'C:\Users\User\Desktop\react app\new-react-app\.next\BUILD_ID' }
please solve this problem
Upvotes: -1
Views: 107
Reputation: 21
Either start the app with:
npm run dev
Or try to first build your site like this:
npm run build
Followed by:
npm start
Upvotes: 0