webpack报错 TypeError: Cannot read property ‘tap‘ of undefined WebGirl 2023-06-09 110 阅读1分钟 报错如下图: 原因:webpack的版本号跟html-webpack-plugin的版本号不匹配,不兼容 当前版本: "webpack": "^4.46.0" "webpack-cli": "^3.3.12" "html-webpack-plugin": "^5.5.1", 解决:降低版本 npm install -D html-webpack-plugin@4.5.0 npm install -D html-webpack-plugin@3.2.0