We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a18728 commit 71f4a1bCopy full SHA for 71f4a1b
backend/app/core/config.py
@@ -38,9 +38,9 @@ class Settings(BaseSettings):
38
FRONTEND_HOST: str = "http://localhost:5173"
39
ENVIRONMENT: Literal["local", "staging", "production"] = "local"
40
41
- BACKEND_CORS_ORIGINS: Annotated[list[AnyUrl] | str, BeforeValidator(parse_cors)] = (
42
- []
43
- )
+ BACKEND_CORS_ORIGINS: Annotated[
+ list[AnyUrl] | str, BeforeValidator(parse_cors)
+ ] = []
44
45
@computed_field # type: ignore[prop-decorator]
46
@property
0 commit comments