Add 10.0.0.127:5173 to CORS allowed origins

This commit is contained in:
2026-01-28 12:01:36 +11:00
parent cd8a062145
commit 6099b87db9

View File

@@ -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"