mirror of
https://github.com/rjNemo/vf-site
synced 2026-06-06 01:16:38 +00:00
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://villafleuriegp.com",
|
|
i18n: {
|
|
locales: ["fr", "en"],
|
|
defaultLocale: "fr",
|
|
routing: {
|
|
prefixDefaultLocale: true,
|
|
redirectToDefaultLocale: true,
|
|
},
|
|
},
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
});
|