Initial Commit

This commit is contained in:
Chaoscaot
2023-09-20 20:52:40 +02:00
commit 4dca085cec
15 changed files with 187 additions and 0 deletions

12
astro.i18n.config.ts Normal file
View File

@@ -0,0 +1,12 @@
// @ts-ignore
import { defineAstroI18nConfig } from "astro-i18n"
export default defineAstroI18nConfig({
defaultLangCode: "en",
supportedLangCodes: [],
showDefaultLangCode: false,
translations: {
"en": "src/locales/en.json",
},
routeTranslations: {},
})