From 73eb90fdcb868743064d414a28cca319eaf11c15 Mon Sep 17 00:00:00 2001 From: Luckaskl Date: Thu, 28 May 2026 15:33:54 -0500 Subject: [PATCH] =?UTF-8?q?fix=20CORS=C2=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 753ee4f..a53d659 100644 --- a/app/main.py +++ b/app/main.py @@ -17,7 +17,7 @@ app = FastAPI( app.add_middleware( CORSMiddleware, allow_origins=["http://localhost:3000", "https://sistema-distribuido-trabalho-faculd.vercel.app"], - allow_credentials=True, + allow_credentials=False, allow_methods=["*"], allow_headers=["*"], )