When I publish updates of my application I wish to be sure that all files .js, .png and so on will be downloaded with status 200, not 304.
I tried to use this method:
window.location.reload(true);
But after it one can see that some files are still downloaded with 304 status.
How to do Empty Cache and Hard Reload from js in Angular to force all files be downloaded with 304 status?