您的 package.json 文件在脚本属性中缺少构建属性

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

我正在使用

Vercel CLI
部署我的 api,当我运行
vercel dev
时,我收到此消息:

Error: Your package.json file is missing a build property inside the scripts property.

确实,在我的

package.json
中,我没有构建字段,所以我的问题是:它应该放在哪里?

node.js express backend vercel
1个回答
0
投票

我遇到了类似的问题,并且我能够让我的代码与

vercel.json
中的以下代码一起工作。

{
   buildCommand: ""
}

我希望这也能帮助你。

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