vue less 安装报错

今天搭建项目的时候踩了一个小坑

less安装成功后 在引入的时候一直报错

  1. 百度了很多也无果 ,最后才查看了安装的版本后发现了问题所在,less的版本太高导致
  2. 这是报错截图
    vue 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.这是解决方案
    vue less 安装报错
    5.解决方案代码
    npm install [email protected] -s
    npm install [email protected] -s

就这样完美解决