From aac05e439a7f5300f417afd234188970ac32277c Mon Sep 17 00:00:00 2001 From: Luckaskl Date: Thu, 28 May 2026 15:23:52 -0500 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o=20CORS?= 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 810d8e1..753ee4f 100644 --- a/app/main.py +++ b/app/main.py @@ -16,7 +16,7 @@ app = FastAPI( app.add_middleware( CORSMiddleware, - allow_origins=["*"], + allow_origins=["http://localhost:3000", "https://sistema-distribuido-trabalho-faculd.vercel.app"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],