Lorenzo Fabro
Lorenzo Fabro

Reputation: 73

Getting CORS but I have it enabled

My webapp it's working just fine until I got CORS error trying to do a request from a v-autocomplete (on a keydown event). Only happens me there and I don't know why. If I make the same request from any other place or any other component it works flawlessly. Any suggestions? Thanks

Upvotes: 0

Views: 140

Answers (1)

Bash Stack
Bash Stack

Reputation: 519

sometimes the CORS headers are sent only on OPTIONS and GET , v-autocomplete might be a PUT

https://github.com/pelias/api/issues/296

Upvotes: 3

Related Questions