Skip to content
Snippets Groups Projects
astro-i18next.config.ts 361 B
Newer Older
import { AstroI18nextConfig } from "astro-i18next";

const config: AstroI18nextConfig = {
  defaultLocale: "en",
  locales: ["en", "fr"],
  namespaces: ["common", "home", "getting-started"],
  defaultNamespace: "common",
  i18nextServer: {
  },
  routes: {
    fr: {
      "getting-started": "commencer",
    },
  },
};

export default config;