控制台提示:
Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
遇到这个提示,虽然不影响开发,但是看起来很不舒服的话可以尝试在vite.config.ts中添加api: 'modern-compiler'配置:
export default defineConfig(({ mode, command }) => {
...
return {
...
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
...
},
},
},
...
}
})
ok,到此,就干干净净了。
查看官方文档是这么说的:
看起来vite7之前,如果用sass包的话,遇到这个问题可能都要这么解决。