From 4a835d3f169cdade04242d5b9122826378fb6bd1 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 23 Mar 2026 14:23:25 -0700 Subject: [PATCH] ignore color function errors They're from Bootstrap, they don't really matter --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index b8318439..098aeb09 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -15,7 +15,7 @@ export default defineConfig({ preprocessorOptions: { scss: { api: "modern-compiler", - silenceDeprecations: ["import", "global-builtin", "if-function"], + silenceDeprecations: ["import", "global-builtin", "if-function", "color-functions"], }, }, },