webpack 使用 extract-text-webpack-plugin 报错 Tapable.plugin is deprecated. Use new API on .hooks instead
根据教程使用 const ExtractPlugin = require('extract-text-webpack-plugin')
配置好后,在 cnpm run build 时出现 Tapable.plugin is deprecated. Use new API on `.hooks` instead
,
原因 webpack 升级 到 v4.x.x,而教程那时候后是没有 v4.x.x,那时候是 v3.x.x。
将 webpack 重装指定版本 cnpm i [email protected]
降级,再运行 ``` cnpm run build ```` 正常。