mirror of https://github.com/searxng/searxng.git
20 lines
317 B
JavaScript
20 lines
317 B
JavaScript
|
/**
|
||
|
* @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'
|
||
|
],
|
||
|
};
|