From b7963179c8c596bf7341895889a6dbc02be78d22 Mon Sep 17 00:00:00 2001 From: Puneet NJ Date: Sun, 5 Jan 2025 07:38:05 +0530 Subject: [PATCH] cors error test1 --- backend/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/index.ts b/backend/src/index.ts index c5022f0..519f151 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -9,7 +9,7 @@ app.use(cookieParser()); app.use(express.json()); app.use( cors({ - origin: "https://course-app.puneetnj.fun/", + origin: "https://course-app.puneetnj.fun", credentials: true, }) );