@@ -0,0 +1,15 @@
+const { defineConfig } = require('@vue/cli-service')
+
+module.exports = defineConfig({
+ css: {
+ loaderOptions: {
+ sass: {
+ // 👇 关键:直接关闭 @import 弃用警告
+ sassOptions: {
+ quietDeps: true,
+ silenceDeprecations: ['import', 'legacy-js-api'],
+ },
+})