Base solution for your next web application
Open Closed

Users running cached pages after updates to Azure deployed app #10632


User avatar
0
henryand created

We are are using ANZ 10.1 Angular/Core combined version deployed to an Azure app service deployment slot.

When we publish changes to the Angular front-end, we occasionally have users stuck in a spinning wheel. Debugging has determined that their front end code was cached for their browser. Having them clear their browser history resolved the issue. Our customer should not have to deal with our application hung up by their users' browser cache. Is there a way to set our ANZ Angular code to not cache the html and ts files?

Thanks, Rocco


1 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    Could you try addin below lines to your index.html head section and try again ?

    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="0">