From fcfb1af958e250cb959f743460066df1e8c010b6 Mon Sep 17 00:00:00 2001 From: diallolatoile Date: Wed, 7 Jan 2026 22:15:18 +0000 Subject: [PATCH] feat: Correct User Exists Validation --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 1810a55..57ac811 100644 --- a/src/main.ts +++ b/src/main.ts @@ -20,7 +20,7 @@ async function bootstrap() { // CORS app.enableCors({ - origin: process.env.CORS_ORIGINS?.split(',') || '*', + origin: process.env.ALLOWED_ORIGINS?.split(',') || '*', credentials: true, });