When I put rate limiting on my server, and when the rate exceeds, the preflight request fails. So, code execution stops, and the interceptor error is also not shown.
Is there any way to handle it in the Axios interceptor?
api.interceptors.response.use(
res => res,
err => {
}
}
);
