diff --git a/backend/app/core/config.py b/backend/app/core/config.py index d58e03c..44e1f0a 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -35,7 +35,8 @@ class Settings(BaseSettings): SECRET_KEY: str = secrets.token_urlsafe(32) # 60 minutes * 24 hours * 8 days = 8 days ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 8 - FRONTEND_HOST: str = "http://localhost:5173" + # FRONTEND_HOST: str = "http://localhost:5173" + FRONTEND_HOST: str = "https://dashboard.daheimao.top" ENVIRONMENT: Literal["local", "staging", "production"] = "local" BACKEND_CORS_ORIGINS: Annotated[