feat: Add Next.js basePath and relocate the login page to /login.

This commit is contained in:
2026-02-06 13:39:38 +01:00
parent 8ac090aff3
commit 6229f8e886
3 changed files with 5 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import { redirect } from "next/navigation";
export default function RootPage() {
redirect("/gatekeeper/login");
redirect("/login");
}