We are making changes in our Angular application and pushing into production every day.
The problem: users have to reload the page to load the updated files. This is not about caching, simply F5.
What is the best way to automatize page reloading if any change in frontend available?
We have come up with the following idea: store the "version" in the database. Also store the "version" in Local Storage. Compare these values each request to the backend. If they differ - reload the page.