Newer
Older

Yassine Doghri
committed
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import sitemap from "@astrojs/sitemap";
import astroI18next from "astro-i18next";
// https://astro.build/config
export default defineConfig({

Yassine Doghri
committed
site: "https://castopod.org/",
experimental: {
integrations: true,
},
integrations: [
tailwind(),
sitemap(),
astroI18next({

Yassine Doghri
committed
baseLanguage: "en",
resourcesPath: "./src/locales/",

Yassine Doghri
committed
i18next: {

Yassine Doghri
committed
supportedLngs: ["en", "fr"],
vite: {
ssr: {

Yassine Doghri
committed
external: ["svgo"],
},
},
});