当前位置:首页 » 《关注互联网》 » 正文

处理报错 Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

17 人参与  2024年11月17日 19:21  分类 : 《关注互联网》  评论

点击全文阅读


在vue3+vite项目中,使用低sass版本低于2.0.0的,会有上面这个警告

运行项目,会出现下面警告:

下面处理警告,

方法一:

vite.config.[js/ts]. 文件中

export default defineConfig({  css: {    preprocessorOptions: {      // 如果'modern-compiler'不管用,可换成"modern"      scss: {        api: 'modern-compiler' // or "modern"      }    }  }})

方法二:

vite.config.[js/ts]. 文件中

//vite.config.tsexport default defineConfig({  //..other config  css: {    preprocessorOptions: {      scss: {        silenceDeprecations: ["legacy-js-api"],      },    },  },})

注意,在方法二可以和 指定scss公用文件api共存,方法一的不行

在使用方法二,还可以共存scss公用文件api(additionalData),如下:

//vite.config.tsexport default defineConfig({  //..other config  css: {    preprocessorOptions: {        scss: {          additionalData: '@import "./src/assets/scss/var.scss";', // 公用的scss属性文件          silenceDeprecations: ["legacy-js-api"], // 去除警告提示 Deprecation Warning...        }      },  },})


点击全文阅读


本文链接:http://m.zhangshiyu.com/post/187865.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1