I'm using the excellent svg-sprite as a cli to generate an svg sprite from several other svg files. Most of the configuration is understood and I get the svg file and associated css as expected. I'd like the generated svg file to always have the same name, rather than a name which appears to feature a short randomised string, but the configuration for that eludes me. Any suggestions?
The maintainer of the svg-sprite project, Joschi Kuphal, answered this problem for me as follows:
All you need to do is disable cache busting by setting mode.mode.bust = false.
...which works great!