I have an existing site which does not already have a dependency stack on Node.js and am looking to try to prevent browser errors due to cached javascript/css files after updates. Currently, all imports of local javascript/css have additional arguments in an attempt to curb this (as described here) like:
<script src="js/common.js?dev=4829">
But after updates it's clear this isn't working. Users still have to CTRL+Shift+R to hard-refresh to see the new content.
Server is running Apache under Linux, if that helps. Is there a better way to handle this which doesn't add the Node.js dependency stack?