From 5aa2ca58ca8c8fa3aa7344184a5126a16cbcc004 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Fri, 10 Oct 2025 15:38:10 +0200 Subject: [PATCH] chore: fix vercel build (#10887) # Which Problems Are Solved By default, the login redirects in all cases from its `NEXT_PUBLIC_BASE_PATH` to `NEXT_PUBLIC_BASE_PATH/loginname` now. This is the expected behavior. # How the Problems Are Solved Deployments to Vercel use the `apps/login/.env` file for their defaults. As the .env file had DEBUG=true, redirects from root to ./loginname were disabled. DEBUG=true is not needed anywhere, so it's deleted from the .env file. --- apps/login/.env | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/login/.env b/apps/login/.env index 941bd7206b3..09ad84ac461 100644 --- a/apps/login/.env +++ b/apps/login/.env @@ -1,5 +1,4 @@ NEXT_PUBLIC_BASE_PATH=/ui/v2/login EMAIL_VERIFICATION=false -DEBUG=true ZITADEL_API_URL=http://localhost:8080 ZITADEL_SERVICE_USER_TOKEN_FILE=../../login-client.pat