I have been using axios in react. Since I made a cross domain request. I have been facing this issue. Although i have gone through all the solutions by adding headers.
await axios.get(`http://abc.in`,{headers: {
'Access-Control-Allow-Origin': '*',
}});
.
Also added proxy in my package.json
"proxy":"http://abc.in"