问题描述
原因分析:
旧版 JS API 现已弃用,并将在 Dart Sass 2.0.0 中被删除。:
解决方案:
在 vite.config.ts
中关闭警告
export default defineConfig({css: { preprocessorOptions: { scss: { silenceDeprecations: ['legacy-js-api'], api: 'modern-compiler', // or 'modern' } } }})