I have created a next.js app, but when I try to npm run dev
, it shows this error to me.
npm run dev error
What should I do?
Node.js version: 12.0.0
npm version: 7.10.2
I also have tried npm install
and then npm run dev
but it still got the same problem.
My script from package.json
{
"name": "with-mongodb",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"mongodb": "^3.5.9",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"license": "MIT"
}
Edit: I created the project by running the following command:
npx create-next-app --example with-mongodb mflix
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…