0

I am creating a pipeline and deploying the angular application. After successful build and release I can not show/visible the application app service. I am using FTP server azure provides a username and password.

some screenshot given below enter image description here

enter image description here

Unexpectedly I can view my site

enter image description here

Bulbul Ahmed
  • 84
  • 1
  • 11

1 Answers1

1

We need to set server to handle routes of the node application .

  • Set the startup command in Azure Portal => Configuration => General Settings
pm2 serve /home/site/wwwroot --no-daemon --spa
  • Make sure the dist folder is under wwwroot directory

  • Check in KUDU console whether all the files are deployed properly

References taken from

Link1, Link2

Harshitha
  • 3,784
  • 2
  • 4
  • 9
Venkatesan
  • 3,748
  • 1
  • 3
  • 15