我正在使用
Vercel CLI
部署我的 api,当我运行 vercel dev
时,我收到此消息:
Error: Your package.json file is missing a build property inside the scripts property.
确实,在我的
package.json
中,我没有构建字段,所以我的问题是:它应该放在哪里?
我遇到了类似的问题,并且我能够让我的代码与
vercel.json
中的以下代码一起工作。
{
buildCommand: ""
}
我希望这也能帮助你。