Webpack is outputting something like
[78] multi ./src/index.js 28 bytes {0} [built]
What does the multi
on this line mean?
multi means multi-file, in other words the multiple webpack entries as an array.
Depends on the entry object, webpack, internally has different approach to handle it. When entry is an array, then MultiEntryPlugin.js is called.
That is the internal flow to follow:
WebpackOptionsApply >
EntryOptionPlugin >
You can see the test case here: https://github.com/webpack/webpack/tree/v3.4.1/test/binCases/entry/multi-file
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With