From 907dd607f256d8c09624606d36e52b882266e705 Mon Sep 17 00:00:00 2001 From: "n.tolstov" Date: Sun, 30 Nov 2025 20:13:14 +0300 Subject: [PATCH] feat: Update CORS origins to use port 3091 and include a new IP address. --- backend/app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/app/main.py b/backend/app/main.py index e79da08..c3a5ff2 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -44,9 +44,9 @@ app.add_middleware(CatchAllMiddleware) # CORS middleware origins = [ - "http://localhost:3000", - "http://127.0.0.1:3000", - "http://localhost:8000", + "http://localhost:3091", + "http://127.0.0.1:3091", + "http://192.168.50.130:3091", ] app.add_middleware(