I created Angular 6 app and hosting it using Apache on a remote server.
Created a build with ng build --prod.
I noticed that when making changes and updating an html file - the page is being loaded from a cache and not from a new version of a file that is placed in Apache folder (using default configuration in Apache and nothing in Meta tags in HTML pages yet).
How to force reloading page on a client browser but only when there is a new version of the same page? (new changes to an existing site)
What are the best practices?