Why am I getting Axios CORS? – Javascript
I have to download an ics file with axios, I tried: axios.defaults.headers.common['Access-Control-Allow-Origin'] = '*'; axios.get('<url>' { responseType: 'blob', headers: { } }).then((response) => ... If I visit the URL with my browser, I instantly get the download. I'm getting the…