When I run ng serve
, where are the files generated and stored? I need to troubleshoot why the app works with ng serve
but not for production build.
Forgot to mention that I'm using webpack version of angular-cli.
When I run ng serve
, where are the files generated and stored? I need to troubleshoot why the app works with ng serve
but not for production build.
Forgot to mention that I'm using webpack version of angular-cli.
With the webpack version the output isn't written to disk. Webpack manages that all in memory and serves it to the browser using the webpack-dev-server
.
If you'd like to view the dev output, you will need to run ng build
and then look into the dist
directory