I\'m getting a very strange error when trying to deploy my project with kudu on Azure.
I have build my project with dotnet with VueJs. I have used the following templat
According to your error information, your issue was caused by the incorrect Node version obviously. The one of the prerequisites of GitHub repo you used is NodeJS >= 8.9.4
, but now it's v0.10.40
on your Azure WebApp. As you said, the WEBSITE_NODE_DEFAULT_VERSION
setting has beed added, but it seems not work.
I followed the document to add the same setting and click Save
on Azure portal as the figure below, then immediately my kudu console restarted and check my node & npm version which be correct.
So my suggestion is:
WEBSITE_NODE_DEFAULT_VERSION
setting whether be added in the correct field.