Skip to content

Commit 1613e13

Browse files
authored
Update svgo config (#1888)
Make use of `removeUnknownsAndDefaults`'s option `keepDataAttrs` to remove data attributes
1 parent 51eb00c commit 1613e13

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

svg-sprite.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"params": {
2121
"overrides": {
2222
"removeUnknownsAndDefaults": {
23+
"keepDataAttrs": false,
2324
"keepRoleAttr": true
2425
},
2526
"removeViewBox": false
@@ -33,7 +34,6 @@
3334
"params": {
3435
"attrs": [
3536
"clip-rule",
36-
"data-name",
3737
"fill"
3838
]
3939
}

svgo.config.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ export default {
1313
params: {
1414
overrides: {
1515
removeUnknownsAndDefaults: {
16-
keepRoleAttr: true
16+
keepDataAttrs: false, // remove all `data` attributes
17+
keepRoleAttr: true // keep the `role` attribute
1718
},
18-
removeViewBox: false
19+
removeViewBox: false // keep the `viewBox` attribute
1920
}
2021
}
2122
},
2223
// 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
2425
'cleanupListOfValues',
2526
{
2627
name: 'removeAttrs',
2728
params: {
2829
attrs: [
2930
'clip-rule',
30-
'data-name',
3131
'fill'
3232
]
3333
}

0 commit comments

Comments
 (0)