0
votes

I have an angular app with Server side rendering. And also, this server.ts has some simple APIs in it. I am trying to deploy it in Azure app service(with AD integration) but with no success. What could it be still missing?

package.json

"scripts": {
"ng": "ng",
"start": "node dist/angular-app/server/main.js",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"dev:ssr": "ng run angular-app:serve-ssr",
"serve:ssr": "node dist/angular-app/server/main.js",
"build:ssr": "ng build --prod && ng run angular-app:server:production",
"prerender": "ng run angular-app:prerender"
},

Error message when I access the Azure app service url:

enter image description here

1
Has your problem been solved? Is there any progress?Jason Pan

1 Answers