It would be nice to also support `static/icon.svg` is available, I think we could use [sharp](https://github.com/lovell/sharp) for transformation. ```js const sharp = require("sharp") sharp('static/icon.svg') .png() .toFile("{buildDir}/icon.png") .then(function(info) { console.log(info) }) .catch(function(err) { console.log(err) }) ```