This commit is contained in:
2026-03-12 20:16:40 -04:00
commit 184cdcad78
71 changed files with 10018 additions and 0 deletions

26
astro.config.mjs Normal file
View File

@@ -0,0 +1,26 @@
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
import sitemap from '@astrojs/sitemap';
export default defineConfig({
output: 'static',
site: 'https://cachetdeco.com',
i18n: {
defaultLocale: 'fr',
locales: ['fr'],
routing: {
prefixDefaultLocale: false,
},
},
integrations: [
sitemap({
i18n: {
defaultLocale: 'fr',
locales: { fr: 'fr-CA' },
},
}),
],
vite: {
plugins: [tailwindcss()],
},
});