I am testing my application - for which I have written backend using node and express and frontend using React.
I am not simulating a slow-network - but I am actually sitting in a slow network.
Sometimes, an xhr request using axios - which I have written in my code doesn't actually work - because of network request caching.
When I open the chrome developer console in a separate window and check the "disable cache" button- it works perfectly.
How can I enforce this "disable cache" at all times in chrome without opening the developer console.
Is there any other browser which has this feature?
Cache-Control: no-cache
header to the response?