vue使用less 有报错(loaderContext.getResolve is not a function)
1.安装less
npm install less-loader --save
2.main.js 引入
import less from 'less'
Vue.use(less)
warning:如果报错(loaderContext.getResolve is not a function)
a.卸载less-loader
npm uninstall less-loader
b.安装低版本less-loader
npm install less-loader@4.1.0 --save
本文来自博客园,作者:时光凉忆,转载请注明原文链接:https://www.cnblogs.com/naturl/p/14148958.html