Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在开发环境的 ng 构建应用程序中禁用 webpack 块优化或密封。我面临的一个问题是,每当我对我的角度(ts、html、css ....)进行一次更改时,重建的速度非常缓慢。建议我改进它。
ng build是您用于生产环境的构建。此构建启用了代码优化,禁用这些优化在 99% 的时间内没有任何意义。
ng build
相反,像其他开发人员一样做它并使用
ng serve
它甚至有一个可以使用的观察者和开发服务器。此外,它不会像以前那样优化生产构建的代码ng build,因为它更快。