Vue坑点杂谈(五)UnhandledPromiseRejectionWarning: TypeError: loaderContext.getResolve is not a function错误

时间:2024-04-07 08:14:30

Vue坑点杂谈(五)UnhandledPromiseRejectionWarning: TypeError: loaderContext.getResolve is not a function错误

一、写在开头
这个错误是出现在vue-cli脚手架搭建的项目中,执行npm run dev时出现的报错。

二、发现问题
编译时会出现以下的报错:
Vue坑点杂谈(五)UnhandledPromiseRejectionWarning: TypeError: loaderContext.getResolve is not a function错误
三、解决问题
这种情况的出现较为频繁,一般是使用了诸如scss、less等css的拓展语言所致,只需要修改对应的loader版本即可,一般是将对应的版本调低即可。

好了,大概就是这样,我是O5,共勉!
也请大家关注一下我的公众号:游戏前端。

Vue坑点杂谈(五)UnhandledPromiseRejectionWarning: TypeError: loaderContext.getResolve is not a function错误