I am loading SVG files with @svgr/webpack into React, I works fine but it strips the ids of the elements.
In order to keep the ids, I saw the option cleanIDs in SVGO config file, which I set to false, but to no avail.
How can I keep my ids?
Here is how I configure the loader in webpacks:
{
test: /\.svg$/,
use: [
{
loader: "@svgr/webpack",
options: {
cleanIDs: false,
},
},
],
},
I also tried:
This config worked for me on @svgr/[email protected]:
use: [
{
loader: "@svgr/webpack",
options: {
svgoConfig: {
plugins: [
{
cleanupIDs: false
}
]
}
}
}
]
Some links that helped me figure this out:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With