mirror of
https://github.com/searxng/searxng.git
synced 2025-01-10 10:25:25 +00:00
8c3f0c3d52
BTW: change icon color from red to gray Closes: - https://github.com/searxng/searxng/issues/4066 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
18 lines
300 B
JavaScript
18 lines
300 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',
|
|
],
|
|
};
|