一、代码分离
这里按照官网,配置extract-text-webpack-plugin,但是如果是webpack 4.0以上,就会报错,需要安装如下应用:报错 Chunk.entrypoints: Use Chunks.groupsIterable and filter by instanceof Entrypoint instead解决
npm install extract-text-webpack-plugin@next --save-dev
二、输出文件
正常我们配置[contenthash:8]发现报错了,所以改成[chunkhash:8]
转载于:https://www.cnblogs.com/zjh-study/p/10856044.html