summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/svg4web.svgo.js
blob: 83f74cde1edf4523443e8984e9ac25f207a7c94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @license
 * SPDX-License-Identifier: AGPL-3.0-or-later
 *
 * svgo config: Optimize SVG for WEB usage
 */

module.exports = {
  plugins: [
    {
      name: 'preset-default',
    },
    // make diff friendly
    'sortAttrs',
    // Optimize SVG for WEB usage
    'convertStyleToAttrs',
    'removeXMLNS'
  ],
};