Hey there!
I’m using a sprites.svg file to load my svgs but my company has cached trough CloudFlare all the assets, so the only way to get a new clean version is to version that file but I don’t want to use a custom versioning function I think it could be better to get the same versioning ID than the app css and js are getting every time I build because I’m also re-generating that file every time I rebuild all my assets to deploy them to production.
To show that file on the blade templates I’m doing something like this:
<svg class="block w-9 h-9 pt-2 md:hidden" role="img">
<use xlink:href="@asset('images/svg/sprites.svg')#icon-locker-w" />
</svg>
Would you have any idea how to achieve that?