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
Describe the bug "Simple requests" should not trigger a preflight request, instead they should reject if the server responds without the necessary access-control-allow-origin header.
To Reproduce
Steps to reproduce the behavior:
Send a GET request with no custom headers from http://localhost:1234 to http://localhost:9876
Observe that there is an OPTIONS request sent first (the CORS preflight check), instead of simply performing the request
Expected behavior
Requests that conform to the "simple request" pattern shouldn't trigger a preflight
The text was updated successfully, but these errors were encountered:
Describe the bug
"Simple requests" should not trigger a preflight request, instead they should reject if the server responds without the necessary
access-control-allow-origin
header.To Reproduce
Steps to reproduce the behavior:
http://localhost:1234
tohttp://localhost:9876
Expected behavior
Requests that conform to the "simple request" pattern shouldn't trigger a preflight
The text was updated successfully, but these errors were encountered: