解决vite使用sass 1.77.8以上版本时,提示的Deprecation Warning: The legacy JS API is deprecated

1,458 阅读1分钟

控制台提示: Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

image.png

遇到这个提示,虽然不影响开发,但是看起来很不舒服的话可以尝试在vite.config.ts中添加api: 'modern-compiler'配置:

export default defineConfig(({ mode, command }) => {
  ...
  return {
      ...
      css: {
          preprocessorOptions: {
              scss: {
                  api: 'modern-compiler',
                  ...
              },
          },
      },
      ...
  }
})

ok,到此,就干干净净了。
查看官方文档是这么说的:

image.png

vite 文档 -> preprocessorOptions

看起来vite7之前,如果用sass包的话,遇到这个问题可能都要这么解决。