今天搭建项目的时候踩了一个小坑
less安装成功后 在引入的时候一直报错
- 百度了很多也无果 ,最后才查看了安装的版本后发现了问题所在,less的版本太高导致
- 这是报错截图
3.这是报错代码
Module build failed: ValidationError: Invalid options object. Less Loader has been initialized using an options object that does not match the API schema.
- options has an unknown property ‘indentedSyntax’. These properties are valid
4.这是解决方案
5.解决方案代码
npm install less-loader@5.0.0 -s
npm install less@3.9.0 -s
就这样完美解决