ng serve is not building to the path that I have set in my angular-cli.json in apps[0].outDir.
ng serve
apps[0].outDir
ng build works correctly and builds to the path that I have specified.
ng build
It's correct that ng serve builds in memory.
Angular CLI does not have support for running a server and writing to disk at the same time.
If you are using your own server, etc., you can use ng build --watch, which will watch files just like ng serve, but will write them to disk, and will not run a server.
ng build --watch
Check this official documentation on how to serve files from disk: https://github.com/angular/angular-cli/wiki/stories-disk-serve
2.1m questions
2.1m answers
60 comments
57.0k users