项目报错Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
参考文章:
1.Vite 警报:The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
2.处理报错 Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
前言
最近在写vite + vue3 项目的时候 终端出现 警告,如下图:

Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
经过查找发现原因是:使用低sass版本低于2.0.0的,会有上面这个警告
解决方法
在vite.config.[js/ts]. 文件中
export default defineConfig({
css: {
preprocessorOptions: {
// 如果'modern-compiler'不管用,可换成"modern"
scss: {
api: 'modern-compiler' // or "modern"
}
}
}
})
非常好用~

浙公网安备 33010602011771号