Next.js在所有的npm运行命令中都给出了缺失的脚本。

问题描述 投票:0回答:1

我正在创建一个Next.js项目,因为我跟着Udemy的课走。我有以下的package.json

{
  "name": "nextjsdemo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "dev": "next",
    "build": "next build",
    "start": "next start"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "next": "^9.0.2",
    "react": "^16.8.6",
    "react-dom": "^16.8.6"
  }
}

我的目录结构如下。

enter image description here

npm install --save next react react-dom

当我运行命令

npm run dev

我收到了这个错误。

npm ERR! missing script: dev

我在npm运行构建时也收到类似的错误。

我到底做错了什么?

谢谢。

编辑1我唯一的办法就是在V4.2.3旁边降级。这似乎很奇怪,最新的版本不能工作。

reactjs next
1个回答
0
投票

解决这个问题的方法是按照在 github.comzeitnext.js#setup.

© www.soinside.com 2019 - 2024. All rights reserved.