webpakc4.0移除了 CommonsChunkPlugin 组建

Posted bug张

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpakc4.0移除了 CommonsChunkPlugin 组建相关的知识,希望对你有一定的参考价值。

在4.0之前我们可以通过 

require(‘webpack.optimize.CommonsChunkPlugin‘); 
这样引入 CommonsChunkPlugin  组建对第三方模块进行独立打包 4.0之后这组建移除了 请使用一下方式进行配置和打包
  ,optimization: {
    runtimeChunk: {
        name: "manifest"
    }
   ,splitChunks: {
        cacheGroups: {
            commons: {
                test: /[\\/]node_modules[\\/]/,
                name: "vendor",
                chunks: "all"
            }
        }
    }

 

以上是关于webpakc4.0移除了 CommonsChunkPlugin 组建的主要内容,如果未能解决你的问题,请参考以下文章

vue $index,$key已经移除了

Chrome 的“Replay XHR”功能被移除了吗?

java 11 移除的一些其他内容,更简化的编译运行程序,Unicode 10,移除了不太使用的JavaEE模块和CORBA技术,废除Nashorn javascript引擎,不建议使用Pack200

vue 中$index $key 已经移除了

html5都有哪些新特性,移除了那些元素

Spring Cloud 2022 发布,这几个组件要移除了!