Skip to content

Commit

Permalink
fix(ids): do not minify them
Browse files Browse the repository at this point in the history
  • Loading branch information
ssinghi authored and gregberge committed May 12, 2018
1 parent d1e2cc5 commit 538b73f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configToOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function configToOptions(config = {}) {
else if (config.title) plugins.push({ removeTitle: false })
if (config.viewBox) plugins.push({ removeViewBox: false })
if (config.keepUselessDefs) plugins.push({ removeUselessDefs: false })
if (config.ids) plugins.push({ cleanupIDs: { remove: false } })
if (config.ids) plugins.push({ cleanupIDs: { remove: false, minify: false } })
if (config.precision === 'number')
svgoConfig.floatPrecision = Number(svgoConfig.precision)
return svgoConfig
Expand Down

0 comments on commit 538b73f

Please sign in to comment.