[webpack-cli] TypeError: Cannot read property 'tap' of undefined
时间:2021-08-03 22:19:54
收藏:0
阅读:298
原因:webpack的版本号跟html-webpack-plugin的版本号不匹配,不兼容
当前版本:
webpack 4.46.0
webpack-cli 4.3.1
html-webpack-plugin@5.3.2
解决:降低版本
npm install -D html-webpack-plugin@4.5.0
原文:https://www.cnblogs.com/liuting-1204/p/15095852.html
评论(0)