I'm developing a web application, server with ASP.NET and frontend in AngularJS, and every time that I'm deploying a new version, on Azure App Service (IIS as a service) I have a caching problem - the view does not update to the new version until I power on the Disable cache checkbox in the chrome developer tools or press Ctrl+Shift+R
I try to add in the index.html this meta-tags
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
but it doesn't work. I tried a lot of ideas that I found on the network but the issue doesn't solved