summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/svg4web.svgo.js
blob: 5e12251f315dad79fe8e58da02b785960e435a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * @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',
  ],
};