[Vuejs]-Why do I keep getting CORS errors even though I've configured it correctly

0👍

The problem is not on Back-end part, its chrome not allowing to fetch https on localhost

just add

{
    'Access-Control-Allow-Origin': '*',
}

in fetch headers

Leave a comment