svg4web.svgo.js 300 B

123456789101112131415161718
  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. ],
  17. };