Understanding correctly, the bundling automaticly handles refreshing cache if changes are made to files (with scripts and styles js/css).
Now, i would like that with static resources aswell, as running incorrect version would be unfortunate.
I have tried using
<caching enabled="true" enableKernelCache="true">
<profiles>
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Client" />
</profiles>
</caching>
But i do not see anything that i can relate to it working, i even tried to add duration, as that would be easy to see with max-age (unless its being handled otherwise)
Maybe theres more to do than putting that into the web.config, but i haventh been able to find anything proper.
Any help is grateful.
Go to the complete details ...