You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**[allow_origin](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin){target="_blank"}**: `str`|`*`| Only use the default value for development. **Never use `*` for production** unless your use case requires it |
332
332
|**[extra_origins](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin){target="_blank"}**: `List[str]`|`[]`| Additional origins to be allowed, in addition to the one specified in `allow_origin`|
333
333
|**[allow_headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers){target="_blank"}**: `List[str]`|`[Authorization, Content-Type, X-Amz-Date, X-Api-Key, X-Amz-Security-Token]`| Additional headers will be appended to the default list for your convenience |
@@ -367,7 +367,7 @@ You can compress with gzip and base64 encode your responses via `compress` param
@@ -486,7 +486,7 @@ When necessary, you can set a prefix when including a router object. This means
486
486
You can use specialized router classes according to the type of event that you are resolving. This way you'll get type hints from your IDE as you access the `current_event` property.
0 commit comments