After I build a bundle with ng build --prod --aot I would like to quickly serve it locally. Is there a way to quickly serve the /dist directory locally
ng build --prod --aot
/dist
to test easily built angular app I use this angular-http-server
angular-http-server
to install it you can do
npm install -g angular-http-server cd /path/to/site/dist/site angular-http-server
if you need more info you can check the package npm page angular-http-server