In the midst of my project, I realized that the CSS and JS files are being loaded separately onto the webpage with query strings like .css?1234
to ensure the browsers refresh the files on load.
However, upon returning to the project, I discovered that one file in need of a refresh was not updating. To troubleshoot this issue, I plan to individually refresh each file using the browser's inspect element until I pinpoint the culprit. Unfortunately, adding unique query strings to each file is quite cumbersome in this specific project.
Does anyone know of a method to refresh just a single CSS or JS file using the inspect element in the browser?