From 50bf36df4d4caa6c63189bf5c1130857eb3a4789 Mon Sep 17 00:00:00 2001 From: Alex Muszynski Date: Tue, 24 Jun 2025 22:25:38 -0400 Subject: [PATCH] feat: expand cors --- backend/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index 9c7ab71..8badeec 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -14,7 +14,7 @@ app = FastAPI() app.add_middleware( CORSMiddleware, - allow_origins=["http://localhost:3000", "https://localhost:3000"], + allow_origins=["http://localhost:3000", "https://192.168.125.129:3000"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],