[chore] supress bootstrap warnings for now

This commit is contained in:
2026-04-01 21:08:52 -04:00
parent b65e2a2859
commit 38f041d86f

View File

@@ -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'],
},
},
},
},
});