webpack/examples/dll-app-and-vendor/1-app/template.md

747 B

This is the app part.

The previously built vendor dll is used. The DllReferencePlugin reads the content of the dll from the manifest file and excludes all vendor modules from the compilation. Instead references to these modules will be loaded from the vendor dll via a global variable (vendor_lib_xxxx).

webpack.config.js

_{{webpack.config.js}}_

example-app.js

_{{example-app.js}}_

example.html

_{{example.html}}_

dist/app.js

_{{dist/app.js}}_

Info

Unoptimized

_{{stdout}}_

Production mode

_{{production:stdout}}_