mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 04:26:01 +08:00
In applications that make heavy use of lazy routes and ES2015 libraries, this option can improve bundle sizes. It might also break your bundles in ways we don't understand fully, so please test and report any problems you find. NOTE: the following are known problems with experimentalRollupPass - vendorChunk, commonChunk, namedChunks: these won't work, because by the time webpack sees the chunks, the context of where they came from is lost. - webWorkerTsConfig: workers must be imported via a root relative path (e.g.`app/search/search.worker`) instead of a relative path (`/search.worker`) because of the same reason as above. - loadChildren string syntax: doesn't work because rollup cannot follow the imports.
Angular Webpack Build Facade
WIP