diff --git a/astro.config.mjs b/astro.config.mjs index 96573d2..0fed92a 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -18,5 +18,17 @@ export default defineConfig({ output: "server", security: { checkOrigin: false - } + }, + vite: { + css: { + preprocessorOptions: { + scss: { + // Silences deprecation warnings from dependencies + quietDeps: true, + // Specifically silence color function warnings + silenceDeprecations: ['color-functions', 'import','global-builtin'], + }, + }, + }, + }, });