From 6099b87db9a2f0589d5823421777063022265abe Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 28 Jan 2026 12:01:36 +1100 Subject: [PATCH] Add 10.0.0.127:5173 to CORS allowed origins --- backend/app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index c0dab43..6e6c1b0 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -18,7 +18,7 @@ class Settings(BaseSettings): ACCESS_TOKEN_EXPIRE_MINUTES: int = 30 # CORS - accepts either comma-separated string or JSON array - ALLOWED_ORIGINS: str = "http://localhost:5173,http://localhost:3000" + ALLOWED_ORIGINS: str = "http://localhost:5173,http://localhost:3000,http://10.0.0.127:5173" class Config: env_file = ".env"