I have an Angular App which is building fine on my local with Latest Angular and Node versions.. However, when i deploy it to Azure Static Web app, the build is failing and giving the below error.
Node.js version v16.20.2 detected.
The Angular CLI requires a minimum Node.js version of v18.19.
I have included the engine tag in package.json as below.. but its not helping.. Can someone please help here
"engines": {
"node": ">=18.0.0"
},