I get
Warning: Unknown prop
dataNameontag. Remove this prop from the element
How to delete data-* attr?
Warning: Unknown prop dataName on tag. Remove this prop from the element…
Where are you getting this _warning_? Seems something from react, that accept data-attributes not _camelCased_.
However you could use removeAttrs plugin to remove specific attrs.
This _plugin_ is super flexible since accepts value as regexp.
In case you won't any data-* attribute you could try with something like in your configuration Object:
plugins: [
{
removeAttrs: { attrs: 'data.*' }
},
],
Thanks to @elrumordelaluz for the comprehensive answer. It really doesn't seem like related to SVGO.
Most helpful comment
Where are you getting this _warning_? Seems something from
react, that acceptdata-attributesnot _camelCased_.However you could use removeAttrs plugin to remove specific
attrs.This _plugin_ is super flexible since accepts value as regexp.
In case you won't any
data-*attribute you could try with something like in your configuration Object: