vercel: "Error! Your deployment failed. Please retry later."
As of version 16.1.1, my deployments have started failing with:
> Error! Your deployment failed. Please retry later. More: https://err.sh/now-cli/deployment-error
I’m unable to see any further error information, so it’s difficult to fix!
Here’s my now.json:
{
"version": 2,
"builds": [
{ "src": "next.config.js", "use": "@now/next" },
{ "src": "dist/*", "use": "@now/static", "config": { "distDir": "output" } }
],
"routes": [
{
"src": "^/s(?<season>[0-9]+)/e(?<episode>[0-9]+)/(?<time>.+)",
"dest": "/index?season=$season&episode=$episode&time=$time"
},
{
"src": "^/s(?<season>[0-9]+)/e(?<episode>[0-9]+)",
"dest": "/index?season=$season&episode=$episode"
},
{
"src": "^/s(?<season>[0-9]+)",
"dest": "/index?season=$season"
}
]
}
About this issue
- Original URL
- State: open
- Created 5 years ago
- Comments: 20 (9 by maintainers)
Seems like I can’t use Node 10 because of this issue
The project was scaffolded 2 weeks ago and latest nuxt release was yesterday. https://github.com/nuxt/nuxt.js/releases
nowbuild worked until 2 days ago. So it is obvious that the issue is related with nuxt@2.9.1 - the new release!I managed to solve this issue by using nuxt@2.8.1 which was released more than a month ago.
@maestroDever So, it appears that Nuxt.js bumped their requirement to Node.js 8.12, and we only offer Node.js 8.10 and Node.js 10.
In turn, you can upgrade your Node.js like this in order for it to work again.