The legacy JS API is deprecated and will be removed in Dart Sass 2.0

时间:2024-10-03 08:42:16

The legacy JS API is deprecated and will be removed in Dart Sass 2.0

更新了sass版本后,启动项目控制台一直在报错,影响开发效率,强迫症表示忍受不了。

在这里插入图片描述

字面意思是:Sass在2.0版本将会移除legacy JS API,所以现在使用会发出警告以提醒使用者尽快调整api。

如果使用的vite,官网也有说明
在这里插入图片描述
大致意思是:vite当前的css编译依然使用的兼容的js api的。
所以更改一下vite的设置即可:

export default defineConfig({
  css: {
    preprocessorOptions: {
      scss: {
        api: 'modern-compiler' // or "modern", "legacy"
      },
    },
  },
})