答案 0 :(得分:1)
main.js = your bundled application
vendor.js = Any third-party library or "vendor" code your source is dependent on.
styles.js = contains a script to load all the style rules contained in your styles.scss
polyfills.js = dependencies bundled (@angular, RxJS)
runtime.js = all the code webpack needs to connect your modularized application while it's running in the browser.
It contains the loading and resolving logic needed to connect your modules as they interact.
This includes connecting modules that have already been loaded into the browser as well as logic to lazy-load the ones that haven't.