diff --git a/apps/documentation/app/page.tsx b/apps/documentation/app/page.tsx index 5bf7e5c..16799b6 100644 --- a/apps/documentation/app/page.tsx +++ b/apps/documentation/app/page.tsx @@ -4,5 +4,5 @@ export default function RootPage() { // Redirect to en for now. This is a limitation of static site generation // that we need to work around by creating a client component to read the // navigator.language and redirect to the appropriate locale. - redirect("/en"); + redirect("/en", { permanent: true }); }