Turbopack Error: Next.js package not found #82067
azahoumachraf
started this conversation in
Turbopack Error Report
Replies: 1 comment
-
It means your project is not recognized as a valid Next.js app, or the required packages/configs are missing. ✅ How to Fix It1. Make sure you're in a Next.js projectIf not, create one using: npx create-next-app@latest 2. Install required packagesIf missing, run: npm install next react react-dom 3. Update your package.jsonEnsure you have: "scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
} 4. Restart the dev servernpm run dev Let me know if this helps or if you need help debugging your setup! 👍 |
Beta Was this translation helpful? Give feedback.
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:
f9e98b9c
Error message:
Beta Was this translation helpful? Give feedback.
All reactions