在Vite创建项目中引入Sass弹出The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0

在Vite创建项目中引入Sass弹出The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0

在Vite创建项目中引入Sass弹出The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0_第1张图片

原因分析:

其实通过报错提供的链接就可以知道,sass 提供的某些 js api 即将在 v2.0.0 的新版本中废弃了,提醒你及时更新

解决方案:

在Vite创建项目中引入Sass弹出The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0_第2张图片

在配置文件vite.config.js中配置

// 设置scss的api类型为modern-compiler
  css: {
    preprocessorOptions: {
      scss: {
        api: 'modern-compiler'
      }
    }
  },

你可能感兴趣的:(javascript,前端,node.js)