airbnb / babel-plugin-inline-react-svg

A babel plugin that optimizes and inlines SVGs for your React Components.
MIT License
474 stars 92 forks source link

Svg file path is not passed to svgo #109

Open optimistiks opened 3 years ago

optimistiks commented 3 years ago

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.