webpack / docs

[OLD] documentation for webpack
http://webpack.github.io/docs/
1.46k stars 127 forks source link

what is the entry chunk runtime mean #112

Open honchy opened 6 years ago

honchy commented 6 years ago

https://github.com/webpack/docs/wiki/code-splitting

An entry chunk contains the runtime plus a bunch of modules.

I want to know more about the runtime. what is the runtime mean?

It's possible to configure multiple entry points that will result in multiple entry chunks. The entry chunk contains the runtime and there must only be one runtime on a page (there are exceptions).

why multi runtime will cause exceptions

meetDeveloper commented 5 years ago

Can someone answer?