Deploy Angular 11 to Azure Linux Web Apps

Oleg Kikhtov
Apr 13, 2021
  1. Create Azure Linux web app. Runtime: Node 14 LTS runtime. Set “npx serve -s” as startup command (Configuration -> General Settings)
  2. Create Angular 11 app
  3. Build angular app (ng build — prod)
  4. Deploy the code to your web app. I used Visual Studio and Azure App service extension, selecte /dist/[yourproject] folder for deploying.
  5. Done!

Additional links:

--

--