I have installed svgo like so:
[sudo] npm install -g svgo
Downloaded the default config from repo:
https://github.com/svg/svgo/blob/master/.svgo.yml
Edited the config like so:
...
- minifyStyles
- convertStyleToAttrs
- cleanupIDs: false
- removeRasterImages
- removeUselessDefs
...
Replaced the default like so:
svgo --config=custom.yml
As described here:
https://github.com/svg/svgo#cli
I run SVGO like so:
svgo test.svg test.min.svg
...but the plugin I've deactivated (cleanupIDs) is still active.
I've tried to deactivate other plugins too (i.e. removeTitle) but there is no effect on my output file.
Appreciate some guidance!