1.5 KiB
This example shows how to create an explicit vendor chunk as well as a common chunk for code shared among entry points. In this example, we have 3 entry points: pageA, pageB, and pageC. Those entry points share some of the same utility modules, but not others. This configuration will pull out any modules common to at least 2 bundles and place it in the common bundle instead, all while keeping the specified vendor libraries in their own bundle by themselves.
To better understand, here are the entry points and which utility modules they depend on:
pageAutility1utility2
pageButility2utility3
pageCutility2utility3
Given this configuration, webpack will produce the following bundles:
vendor- webpack runtime
vendor1vendor2
commonutility2utility3
pageApageAutility1
pageBpageB
pageCpageC
With this bundle configuration, you would load your third party libraries, then your common application code, then your page-specific application code.
webpack.config.js
{{webpack.config.js}}
js/vendor.js
{{js/vendor.js}}
js/common.js
{{js/common.js}}
js/pageA.js
{{js/pageA.js}}
js/pageB.js
{{js/pageB.js}}
js/pageC.js
{{js/pageC.js}}
Info
Uncompressed
{{stdout}}
Minimized (uglify-js, no zip)
{{min:stdout}}