getLocalePath
Allows you get the right url for the current locale. It’s strictly typed and even requires you to pass parameters as needed.
1---2import { getLocalePath } from "i18n:astro"3
4getLocalePath("/")5getLocalePath("/about")6getLocalePath("/blog/[slug]", {7 slug: "hello-world"8})9---