Skip to content

Commit 14c7228

Browse files
committed
fix: redirect root path to default locale (#35)
Credit: nb-sb (PR #35)
1 parent aaa93bc commit 14c7228

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

web/src/app/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { redirect } from "next/navigation";
2+
3+
export default function RootPage() {
4+
redirect("/en/");
5+
}

0 commit comments

Comments
 (0)