From a2c714abef7636ad0405b9968b99405f090406cb Mon Sep 17 00:00:00 2001 From: kokopi Date: Tue, 10 Mar 2026 00:28:53 +0900 Subject: [PATCH] fix:deploy --- backend/src/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/auth.ts b/backend/src/routes/auth.ts index 58ce387..60aadfd 100644 --- a/backend/src/routes/auth.ts +++ b/backend/src/routes/auth.ts @@ -79,7 +79,7 @@ export const authRouter: FastifyPluginAsync = async (fastify) => { } req.session.user = user; - const base = process.env.FRONTEND_URL ?? "http://localhost:5173"; + const base = process.env.FRONTEND_APP_URL ?? "http://localhost:5173"; reply.redirect(`${base}?login=1`); }, );