Issue
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.
Solution
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
Answered By - Brocco
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.