commonsChunkPlugin_Config icon indicating copy to clipboard operation
commonsChunkPlugin_Config copied to clipboard

Webpack的common-chunk-plugin源码分析,来自于[我的github文章全集](https://github.com/liangklfangl/react-article-bucket)

Results 1 commonsChunkPlugin_Config issues
Sort by recently updated
recently updated
newest added

[地址](https://github.com/liangklfangl/commonsChunkPlugin_Config#%E5%B0%86%E5%85%AC%E5%85%B1%E4%B8%9A%E5%8A%A1%E6%A8%A1%E5%9D%97%E4%B8%8E%E7%B1%BB%E5%BA%93%E6%88%96%E6%A1%86%E6%9E%B6%E5%88%86%E5%BC%80%E6%89%93%E5%8C%85) ``` plugins: [ new CommonsChunkPlugin({ name: ["chunk",'common1','common2'],//对应于上面的entry的key minChunks:2 }) ] ``` 这里不应该是name属性,而是names属性吧