Cannot read property ‘tapPromise‘ of undefined

245 阅读1分钟

问题

安装"compression-webpack-plugin"插件时候,由于版本过高导致报错“Cannot read property ‘tapPromise‘ of undefined”

impicture_20220211_155629.png

解决

  1. 先卸载原插件 npm uninstall compression-webpack-plugin

  2. 安装低版本,例如6.1.1就可以了 npm install compression-webpack-plugin@6.1.1 -D