diff --git a/astro-i18n.adapter.ts b/astro-i18n.adapter.ts index ae26d66..e19f19e 100644 --- a/astro-i18n.adapter.ts +++ b/astro-i18n.adapter.ts @@ -1,7 +1,10 @@ import type { AstroIntegration } from "astro"; import { mkdir, access, constants, copyFile, rename } from "node:fs/promises"; -const locales = ["en"]; +const locales = [ + "en", + "de", +]; export default function configureI18n(): AstroIntegration { return { diff --git a/src/util/util.ts b/src/util/util.ts index e1c6636..aeebce1 100644 --- a/src/util/util.ts +++ b/src/util/util.ts @@ -19,7 +19,10 @@ import {l as proxyL} from "astro-i18n"; -const locales = ["de"]; +const locales = [ + "en", + "de", +]; export const l = (route: string) => { const transPath = proxyL(route);