From 47b2b2356e89eda4f38b251bc5b085c4c34ec577 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 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index 9c7ab71..fdab30e 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -14,7 +14,12 @@ app = FastAPI() app.add_middleware( CORSMiddleware, - allow_origins=["http://localhost:3000", "https://localhost:3000"], + allow_origins=[ + "http://localhost:3000", + "http://192.168.125.129:3000", + "https://192.168.125.129:3000", + "https://site.muszyn.dev", + ], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],