Defina o padrão sem cabeçalhos de axios de cache
axios.defaults.headers = {
'Cache-Control': 'no-cache',
'Pragma': 'no-cache',
'Expires': '0',
};
(async () => {
const {
data
} = await axios.get('https://catfact.ninja/fact')
console.log(data)
})()
Grieving Gharial