(node:11224) UnhandledPromiseRejectionWarning: TypeError: this.getResolve is not a function

来自/感谢:https://blog.csdn.net/qq_43379916/article/details/109190506

版本过高错误

比如我的webpack是3.6.0版本
而我的css-loader是5.0.0
这里就会出现这个错误
解决办法:
1,手动设置,然后采用npm install 重新下载
2,卸载重装

npm uninstall css-loader //卸载
npm install css-loader@3.0.0 --save-dev   //指定版本重装
原文地址:https://www.cnblogs.com/zjazn/p/14350193.html