I'm doing an API get request via axios to an Exchange Rates API
axios.get('https://api.exchangerate-api.com/v4/latest/USD').then(res=>console.log('res',res)).catch(err => console.log('err',err))
And I'm getting the correct answer in the network
But this is what shows on in my console for de ERR of the get request
I've researched that CORS message and all they say is, that you have to configure your server to accept the authorization header, but thats not an API to my server, it's a third party's server
What can I do?