ng serve
没有建立我在apps[0].outDir
的angular-cli.json中设置的路径。
ng build
正常工作并构建到我指定的路径。
答案 0 :(得分:73)
ng serve
在内存中构建是正确的。
Angular CLI不支持同时运行服务器和写入磁盘。
如果您使用自己的服务器等,则可以使用ng build --watch
,它将像ng serve
一样观看文件,但会将它们写入磁盘,并且不会运行服务器。< / p>
查看有关如何从磁盘提供文件的官方文档:
https://github.com/angular/angular-cli/wiki/stories-disk-serve
答案 1 :(得分:11)
使用ng serve时,输出不会写入磁盘。一切都将留在记忆中。 资源: Where are files stored when running ng serve?