Skip to content

Commit 538b73f

Browse files
ssinghigregberge
authored andcommitted
fix(ids): do not minify them
1 parent d1e2cc5 commit 538b73f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/configToOptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function configToOptions(config = {}) {
6262
else if (config.title) plugins.push({ removeTitle: false })
6363
if (config.viewBox) plugins.push({ removeViewBox: false })
6464
if (config.keepUselessDefs) plugins.push({ removeUselessDefs: false })
65-
if (config.ids) plugins.push({ cleanupIDs: { remove: false } })
65+
if (config.ids) plugins.push({ cleanupIDs: { remove: false, minify: false } })
6666
if (config.precision === 'number')
6767
svgoConfig.floatPrecision = Number(svgoConfig.precision)
6868
return svgoConfig

0 commit comments

Comments
 (0)