gpt4 book ai didi

next.js - 如何设置 next.js?

转载 作者:行者123 更新时间:2023-12-04 02:57:06 29 4
gpt4 key购买 nike

我直接按照官网的步骤操作:

https://nextjs.org/docs/

第一步。

npm install --save next react react-dom

步骤 2. 将脚本添加到 package.json

{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
}

第 3 步。在项目中添加 ./pages/index.js:

export default () => <div>Welcome to next.js!</div>

然后我运行 npm run dev 并得到错误:

/Users/jh/Documents/worksapce/react/nextJs/test1/node_modules/webpackbar/dist/index.js:55
const hasRunning = () => Object.values(sharedState).find(s => s.isRunning);
^

TypeError: Object.values is not a function

我哪里做错了?

最佳答案

这是由于您的节点版本。请升级您的节点版本。 Node >= 7.0.0 完全支持这一点。

关于next.js - 如何设置 next.js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52604166/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com