We have a Problem with our Angular 4 application regarding cache-busting. It seems, that old template-files are cached when we release new versions (Ctrl + F5 solves the problem).
We use angular-cli (--prod) to build our application which should handle cache-busting when new versions are released. The compiled js-file-names contain a hash-number for every version so that files won't be cached. And the html should be included in the javascript-files. Still old template-stuff seems to be cached.
One possible solution might be this one here: How to prevent Browser cache on Angular 2 site? Why should this change anything as not the template but js-files are requested? What's the best solution for this problem`?