I have a problem with updating the CSS stylesheet on my website.
I'm using nodejs and express as a server. When updating the CSS code I want it to automatically use the new style. I do this by giving the CSS file a version number eg ?v=3'
<link rel='stylesheet' href='/stylesheets/style.css?v=3'/>
When the new version of the website is deployed (with the updated stylsheet),it still shjows the previous CSS style even though the CSS version in the HTML refers to the newest version. (When looking in the source code (CTRL+U))
I also purged Cache from Cloudflare and put it on developer mode, this doesnt make a change.
When opening a incognito tab the style is updated.
How can I fix this issue?