这里按照官网,配置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