[Vuejs]-Not using CORS wildcard, but getting CORS wildcard error

0👍

Testing CORS on localhost is problematic. There are scenarios that just won’t work.

In your case, however, the problem is you are doing a redirect from your POST handler.

When a POST responds with a redirect, it is resent as a GET request (depending on the exact response code. A 303 will always redirect as GET. 301 is supposed to ask the user.)

Leave a comment