How to deploy Nestjs App (on Azure)? How to deploy Nestjs App (on Azure)? express express

How to deploy Nestjs App (on Azure)?


Modify your package.json file, and add a postinstall script, this script should be tsc or tsc --sourceMap false if you would like to avoid sourceMaps from being generated.

That would make azure to run tsc after installing all npm packages, remember to change start script also, so its value is 'node dist/index.js'