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
Middleware should avoid setting irrelevant headers because doing so has a cost, both in terms of transport and in terms of heap allocations on the server.
The text was updated successfully, but these errors were encountered:
The CORS middleware sets each ((if its value is non-empty) of the following headers in both preflight responses and actual responses:
However, the only relevant headers for preflight responses are the following:
And the only relevant headers for actual responses are the following:
Middleware should avoid setting irrelevant headers because doing so has a cost, both in terms of transport and in terms of heap allocations on the server.
The text was updated successfully, but these errors were encountered: