svg4web.svgo.js 318 B

12345678910111213141516171819
  1. /**
  2. * @license
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. *
  5. * svgo config: Optimize SVG for WEB usage
  6. */
  7. module.exports = {
  8. plugins: [
  9. {
  10. name: 'preset-default',
  11. },
  12. // make diff friendly
  13. 'sortAttrs',
  14. // Optimize SVG for WEB usage
  15. 'convertStyleToAttrs',
  16. 'removeXMLNS'
  17. ],
  18. };