Turbopack Error: Failed to write app endpoint /(user)/requests/new/page #87684
Closed
ysrn87
started this conversation in
Turbopack Error Report
Replies: 2 comments
|
This error indicates that Turbopack cannot resolve the This is not related to the app route — that route is just the first one Turbopack tried to compile. Quick diagnosticRun this from the same directory you start node -p "require.resolve('next/package.json')"If it throws, Next.js is not resolvable from that folder. Solutions (try in order)
rm -rf node_modules .next package-lock.json
npm install
{
"dependencies": {
"next": "^14 || ^15",
"react": "^18",
"react-dom": "^18"
}
}
npx next dev --no-turboIf this works, it confirms a Turbopack resolution/caching issue.
This matches a known Turbopack resolver issue in certain configurations. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Turbopack version:
ea1df5f2Next.js version:
0.0.0Error message:
All reactions