From cea10f803f371dfc4dbda3a5c3070b0ace3e9e38 Mon Sep 17 00:00:00 2001 From: Luckaskl Date: Thu, 28 May 2026 15:54:16 -0500 Subject: [PATCH] fix CORS final --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index a53d659..4e223ab 100644 --- a/app/main.py +++ b/app/main.py @@ -16,7 +16,7 @@ app = FastAPI( app.add_middleware( CORSMiddleware, - allow_origins=["http://localhost:3000", "https://sistema-distribuido-trabalho-faculd.vercel.app"], + allow_origins=["*"], allow_credentials=False, allow_methods=["*"], allow_headers=["*"],