When serving my app with the Angular cli, how do I disable auto-reload?
ng --help mentions the --live-reload option, but I can\'t make it work.
ng --help
--live-reload
serve your application with this command:
ng serve --live-reload=false
if you want to run your application in prod mode, use following command
ng serve --source-map=false --aot --prod --live-reload=false