webpack 5.0 HtmlWebpackPlugin插件报错,The ‘compilation‘ argument must be an instance of Compilation

就是webpack5太新了,以前的html-web-pack-plugin支持不了了

解决方法:
先把先有的html-webpack-plugin卸载了
npm uninstall html-webpack-plugin
然后安装最最最最新的
npm i --save-dev html-webpack-plugin@next

你可能感兴趣的:(webpack)