From 38f041d86f02c4a6377623d8d0c43ef60161d3c2 Mon Sep 17 00:00:00 2001 From: Thad Miller Date: Wed, 1 Apr 2026 21:08:52 -0400 Subject: [PATCH] [chore] supress bootstrap warnings for now --- astro.config.mjs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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'], + }, + }, + }, + }, });