How to make requests from a page behind the auth middleware to an external API using axios? the API doesn't need any authentication.
Every time requests are sent containing auth token, it doesn't make any problems but I don't feel safe to send auth tokens to an external API each time. I tried this so far:
const config = {
headers: { Authorization: '' }
};
let response = $axios.$get(`APIURL`,config)
however header request still contains auth token.