Svg file to dist/images instead of dist/fonts

I’m having a problem implementing photoswipe, I have a bower override setup (below), which works fine. However I want all my images to end up in the same folder. The png and gif go to images, and the svg currently to fonts.

How can I redirect the svg to my dist/images directory?

"photoswipe": {
  "main": [
    "./dist/photoswipe.js",
    "./dist/photoswipe.css",
    "./dist/photoswipe-ui-default.js",
    "./src/css/main.scss",
    "./src/css/default-skin/default-skin.scss",
    "./dist/default-skin/default-skin.png",
    "./dist/default-skin/default-skin.svg",
    "./dist/default-skin/preloader.gif"
  ]
},

Great, that does the job - many thanks!