Add initial support to new brand color

This commit is contained in:
Alejandro Celaya
2025-05-09 09:05:35 +02:00
parent f6a0910c40
commit 023a0ca824
9 changed files with 75 additions and 47 deletions

View File

@@ -21,9 +21,20 @@ export default defineConfig({
manifestFilename: 'manifest.json',
manifest,
})],
build: {
outDir: 'build',
},
css: {
preprocessorOptions: {
scss: {
// Silence annoying sass deprecation warnings until we get rid of bootstrap
silenceDeprecations: ['mixed-decls', 'abs-percent', 'color-functions', 'global-builtin', 'import'],
},
},
},
server: {
port: 3000,
watch: {
@@ -31,6 +42,7 @@ export default defineConfig({
ignored: ['**/.idea/**', '**/.git/**', '**/build/**', '**/coverage/**', '**/test/**'],
},
},
base: !homepage ? undefined : homepage, // Not using just homepage because empty string should be discarded
// Vitest config