Within my AngularJS application, I am utilizing gulp revving to automatically update the version of all JavaScript and CSS files. However, each time I push a new version of my code to production, some clients experience a mix of old and new data when loading the web page.
Although the network console shows that the new versions of scripts and CSS are being loaded correctly, certain views display outdated information. To see the new data, users must perform a hard reset on their browser.
Is there a method to ensure that the browser loads all new data without requiring a hard reset? Thank you.