我有2个看起来像这样的块:
one
:模块A1,A2,B two
:模块A1,C 我想配置SplitChunksPlugin
为包含A *的每个块发出多个块。
预期输出:
one
:模块B two
:模块C one-A
:模块A1,A2 two-A
:模块A1 请注意,模块A1分两个块发出。
这是我开始使用的配置:
cacheGroups: {
A: {
test: /* some test for A* modules (already works) */
name: (module, chunks) => {
/* would like to emit a separate chunk for each chunk this module belongs to */
}
}
}
我很想让name
返回一个数组,a,这不是API的一部分。