I have come across this piece of code for embedding custom css in my custom BE module extension.
<f:asset.css identifier="myextcss" href="EXT:myExt/Resources/Public/Css/myext.css" />
While it works well, the browser caches this file. How can I prevent it from being cached? I am aware that pages can be set as non-cachable in FE, but in BE I only want to prevent this specific file from caching, not the entire module.