踩坑记录-安装node-sass运行报错TypeError: this.getResolve is not a function at Object.loader
时间:2020-01-06 19:13:08
收藏:0
阅读:449
错误如下:
TypeError: this.getResolve is not a function
at Object.loader (/Users/lizhao/Desktop/gauss/node_modules/sass-loader/dist/index.js:52:26)
原因
sass-loader版本太高
解决办法
将"sass-loader": "^8.0.0"
,更换成"sass-loader": "^7.3.1"
原文:https://www.cnblogs.com/superlizhao/p/12157619.html
评论(0)