From b02afc7f7983433f930c42320fc7cdb4e8742540 Mon Sep 17 00:00:00 2001 From: "n.tolstov" Date: Sun, 30 Nov 2025 20:10:21 +0300 Subject: [PATCH] chore: update CORS origin configuration --- backend/app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/config.py b/backend/app/config.py index 0a351dd..695da2f 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -21,7 +21,7 @@ class Settings(BaseSettings): piston_url: str = "http://localhost:2000" # CORS - cors_origins: str = "http://localhost:3000" + cors_origins: str = "http://192.168.50.130:3091" @lru_cache