-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Listing Origin as an allowed request header is unnecessary #151
Comments
Working on fix #155 |
Apparently some old version of Safari required that header to be present during preflight: 849a49a |
If that used to be true (I haven't been able to find any evidence for this claim), those old versions of Safari are likely long gone and not used by many people. |
Great. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The middleware lists
Origin
as an allowed request header (see here and here). However, listingOrigin
is never necessary because that header is added to requests by the browser, never by the client. You can safely dropOrigin
from that list.The text was updated successfully, but these errors were encountered: