debug=true

This commit is contained in:
Max Peintner
2024-11-14 09:52:17 +01:00
parent 5fa43f0239
commit 14eaa51b28
2 changed files with 6 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import { redirect } from "next/navigation";
export default function Page() {
// automatically redirect to loginname
// if (process.env.DEBUG !== "true") {
redirect("/loginname");
// }
if (process.env.DEBUG !== "true") {
redirect("/loginname");
}
}