webpack4 optimization使用总结(2)

5.cacheGroups
缓存策略,默认设置了分割node_modules和公用模块。内部的参数可以和覆盖外部的参数。
test 正则匹配文件
priority 优先级
reuseExistingChunk是否复用存在的chunk

cacheGroup:{ a: { test: /a\.js/,//匹配规则 minChunks:2,//重写公用chunks的次数 chunks: "all", name: "a",//重写文件名称 enforce: true //强制生成 } }

6.automaticNameDelimiter
文件名称分隔符号~

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/cfdc89213e90a892c490edfdf7e85308.html