From 4597eea04998619f95d96a591f1e8206be5fa64b Mon Sep 17 00:00:00 2001 From: rajdip-b Date: Thu, 23 Jan 2025 23:26:08 +0530 Subject: [PATCH] fix(api): Update CORS settings --- apps/api/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index d6293cf4..7d2f6f5b 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -76,8 +76,8 @@ async function initializeNestApp() { origin: [ 'http://localhost:3025', 'https://keyshade.xyz', - 'https://platform.keyshade.xyz', - 'https://stage.platform.keyshade.xyz' + 'https://app.keyshade.xyz', + 'https://stage.app.keyshade.xyz' ] }) app.use(cookieParser())