File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
"params" : {
21
21
"overrides" : {
22
22
"removeUnknownsAndDefaults" : {
23
+ "keepDataAttrs" : false ,
23
24
"keepRoleAttr" : true
24
25
},
25
26
"removeViewBox" : false
33
34
"params" : {
34
35
"attrs" : [
35
36
" clip-rule" ,
36
- " data-name" ,
37
37
" fill"
38
38
]
39
39
}
Original file line number Diff line number Diff line change @@ -13,21 +13,21 @@ export default {
13
13
params : {
14
14
overrides : {
15
15
removeUnknownsAndDefaults : {
16
- keepRoleAttr : true
16
+ keepDataAttrs : false , // remove all `data` attributes
17
+ keepRoleAttr : true // keep the `role` attribute
17
18
} ,
18
- removeViewBox : false
19
+ removeViewBox : false // keep the `viewBox` attribute
19
20
}
20
21
}
21
22
} ,
22
23
// The next plugins are included in svgo but are not part of preset-default,
23
- // so we need to enable them separately
24
+ // so we need to explicitly enable them
24
25
'cleanupListOfValues' ,
25
26
{
26
27
name : 'removeAttrs' ,
27
28
params : {
28
29
attrs : [
29
30
'clip-rule' ,
30
- 'data-name' ,
31
31
'fill'
32
32
]
33
33
}
You can’t perform that action at this time.
0 commit comments