解决办法: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0

617 阅读1分钟

在跑新Vite+Sass的项目的时候报错:

Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

搜到的各种办法都是让你在viteconfig中配置

css: 
{ 
    preprocessorOptions: { 
        scss: { 
            api: "modern-compiler", 
        }, 
    },
},

其实在vite5.4之后会自动启用api: "modern", 如果vite版本低于5.4配置了也是无效的

image.png