用途说明
CommonsChunkPlugin (公共代码提取插件)
默认会把所有入口节点的公共代码提取出来生成一个新的 JS 代码文件。
options.name
oroptions.names
(string|string[ ]
): The chunk name of the commons chunk. An existing chunk can be selected by passing a name of an existing chunk. If an array of strings is passed this is equal to invoking the plugin multiple times for each chunk name. If omitted and options.async or options.children is set all chunks are used, otherwise options.filename is used as chunk name.options.filename
(string
): The filename template for the commons chunk. Can contain the same placeholder as output.filename. If omitted the original filename is not modified (usually output.filename or output.chunkFilename).options.minChunks
(number|Infinity|function(module, count) -> boolea
n): The minimum number of chunks which need to contain a module before it’s moved into the commons chunk. The number must be greater than or equal 2 and lower than or equal to the number of chunks. Passing Infinity just creates the commons chunk, but moves no modules into it. By providing a function you can add custom logic. (Defaults to the number of chunks)options.chunks
(string[]
): Select the source chunks by chunk names. The chunk must be a child of the commons chunk. If omitted all entry chunks are selected.options.children
(boolean
): If true all children of the commons chunk are selectedoptions.async
(boolean|string
): If true a new async commons chunk is created as child of options.name and sibling of options.chunks. It is loaded in parallel with options.chunks. It is possible to change the name of the output file by providing the desired string instead of true.options.minSize
(number
): Minimum size of all common module before a commons chunk is created.
webpack.config.js配置
|
|
案例
Commons chunk for entries
Generate an extra chunk, which contains common modules shared between entry points.
|
|
You must load the generated chunk before the entry point:
Explicit vendor chunk
Split your code into vendor and application.
|
|
Hint: In combination with long term caching you may need to use this plugin to avoid that the vendor chunk changes. You should also use records to ensure stable module ids.
Move common modules into the parent chunk
With Code Splitting multiple child chunks of a chunk can have common modules. You can move these common modules into the parent (This reduces overall size, but has a negative effect on the initial load time. It can be useful if it is expected that a user need to download many sibling chunks).
|
|
Extra async commons chunk
Similar to 3., but instead of moving common modules into the parent (which increases initial load time) a new async-loaded additional commons chunk is used. This is automatically downloaded in parallel when the additional chunk is downloaded.
|
|
##
|