在跑新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配置了也是无效的