website-astro/astro.i18n.config.ts

17 lines
311 B
TypeScript
Raw Normal View History

2022-12-02 17:29:11 +01:00
import { defineAstroI18nConfig } from "astro-i18n";
export default defineAstroI18nConfig({
defaultLangCode: "fr",
supportedLangCodes: ["en"],
showDefaultLangCode: false,
translations: {
fr: "src/i18n/fr.json",
en: "src/i18n/en.json",
},
2022-12-05 20:50:35 +01:00
routeTranslations: {
en: {
articles: "blog",
},
},
2022-12-02 17:29:11 +01:00
});