babel-plugin-inline-react-svg
babel-plugin-inline-react-svg copied to clipboard
Svg file path is not passed to svgo
trafficstars
Svgo has an option to pass the path to svg file to the optimize function https://github.com/svg/svgo#optimize
It allows the prefixIds plugin to automatically prefix ids with a file name https://github.com/svg/svgo/blob/master/plugins/prefixIds.js#L194
However it seems like in this plugin the path is not passed to svgo optimize https://github.com/airbnb/babel-plugin-inline-react-svg/blob/master/src/index.js#L74, and because of that, no path data is available for the prefixIds plugin.