Closed xiajinchun closed 4 years ago
cacheGroups: { vendors: { test: (module) => { return module.resource && /\.js$/.test(module.resource) && module.resource.match('node_modules') }, name: 'vendor' } }
虽然有 cacheGroups 能 cache node_modules 里面的一些库,但是这里是不是应该 cache 一些公共组件呢,然后 node_modules 可以用 DLLPlugin 来做呢?
目前的本地开发编译速度很快,暂时不需要引入Dll,且Dll同样存在缺点。等什么时候出现性能瓶颈的时候再考虑使用。过早优化是万恶之源
虽然有 cacheGroups 能 cache node_modules 里面的一些库,但是这里是不是应该 cache 一些公共组件呢,然后 node_modules 可以用 DLLPlugin 来做呢?