svgo.json 204 B

123456789101112
  1. {
  2. plugins: [{
  3. cleanupAttrs: true
  4. }, {
  5. removeAttrs: {attrs: '(clip(-\w+)?|stroke(-\w+)?|fill(-\w+)?)'}
  6. }, {
  7. addAttributesToSVGElement: {attributes: ["role=\"img\""]}
  8. }, {
  9. sortAttrs: true
  10. }]
  11. }