You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(plugins) improve splitChunks name function doc (#3120)
* docs(plugins) improve splitChunks name function doc
* docs(plugins) remove the empty example
* docs(plugins) splitChunks.name nesting fixed
* docs(plugins) splitChunks.name note that config is only partial
* docs(plugins) splitChunks.name and splitChunks.test function return type
Running webpack with following `splitChunks` configuration would also output a chunk of the group common with next name: `commons-main-lodash.js.e7519d2bb8777058fa27.js` (hash given as an example of real world output).
214
+
195
215
W> When assigning equal names to different split chunks, all vendor modules are placed into a single shared chunk, though it's not recommend since it can result in more code downloaded.
Controls which modules are selected by this cache group. Omitting it selects all modules. It can match the absolute module resource path or chunk names. When a chunk name is matched, all modules in the chunk are selected.
0 commit comments