[Vuejs]-CORS error between front and back-end both deployed on Heroku

0๐Ÿ‘

โœ…

As silly as it seems, what did the trick was simply to add an "s" to http in http://test-api.herokuapp.com/api/v3 like this:

await axios.get('https://test-api.herokuapp.com/api/v3')...

Leave a comment