Currently, Index.html contains numerous JavaScript files that are concatenated and minified into a single file. This consolidated file undergoes a name change due to the filerev grunt task.
Although this process functions correctly, an issue arises when Index.html is cached, causing it to reference old JS file names after a new deployment. How can we ensure that Index.html always retrieves the latest version from the server? Alternatively, how can we implement regular checks every 15 minutes for updates?
Appreciate any guidance on this matter.