-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvgo.config.json
39 lines (39 loc) · 1.16 KB
/
svgo.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"plugins": [
{
"addAttributesToSVGElement": {
"attributes": [{ "fill": "currentColor" }, { "aria-hidden": "true" }]
}
},
{ "cleanupIDs": true, "params": { "minify": true } },
{ "cleanupListOfValues": true },
{ "convertColors": true },
{ "convertStyleToAttrs": true },
{ "convertTransform": true },
{ "mergePaths": true },
{ "minifyStyles": true },
{ "moveElemesAttrsToGroup": true },
{
"removeAttrs": true,
"params": { "attrs": ["fill-rule", "fillRule"] }
},
{ "removeComments": true },
{ "removeDesc": true, "params": { "removeAny": true } },
{ "removeDimensions": true },
{ "removeDoctype": true },
{ "removeEditorsNSData": true },
{ "removeEmptyAttrs": true },
{ "removeEmptyContainers": true },
{ "removeEmptyText": true },
{ "removeNonInheritableGroupAttrs": true },
{ "removeTitle": false },
{ "removeUnknownsAndDefaults": true },
{ "removeUnusedNS": true },
{ "removeUselessDefs": true },
{ "removeUselessStrokeAndFill": true },
{ "removeXMLProcInst": true },
{ "sortAttrs": true }
],
"floatPrecision": 3,
"multipass": true
}