解决The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.错误
·
在使用vue2+vite开发过程中一直报如下提示:

解决方案:
1、确保sass版本是全新的
npm install sass --save-dev
2、在vite.config.js配置文件下进行如下配置
export default defineConfig({
//添加如下配置即可
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler' // "modern"代替"legacy"
},
},
},
})更多推荐

所有评论(0)