--- import { getLocaleByPath } from "astro:i18n"; import MainLayout from "../../layouts/MainLayout.astro"; import { dictionary } from "../../i18n/dictionary"; const { title } = dictionary[Astro.currentLocale]; export async function getStaticPaths() { return ["en", "fr", "cs", "de"].map((lang) => { return { params: { lang } }; }); } ---

Welcome

{Astro.url.toString()}