What are some solutions in Angular that force the browser to re-download partial views that have been updated? I'm looking into working with a CMS solution where partial views would be updated regularly.
Are people updating the route URL path in the route config when deploying updates to partial views or tacking on versions to the query string to force the browser to re-download?
We have looked into adding cache-control headers to all partial views but this isn't ideal because browsers will be re-downloading all partial views and not just ones that have changed.
For the CMS pages we were thinking of making an http call to the CMS inside the route config to get the version of the given page and tacking that on as a query string. Has any else implemented something similar?