我正在尝试将 nuxt 应用程序部署到 now 平台,但由于节点版本而失败。
这是错误消息:
error nuxt@1.0.0: The engine "node" is incompatible with this module. Expected version "10.x". Got "8.10.0"
我的 now.json
{
"version": 2,
"builds": [
{
"src": "nuxt.config.js",
"use": "@nuxtjs/now-builder",
"config": {}
}
]
}
并且 package.json 有
"engines": {
"node": "10.x"
}
我究竟做错了什么?