Created
September 5, 2023 12:08
-
-
Save hgrimelid/c3c5b8ce41192f52283e25fb798e28b2 to your computer and use it in GitHub Desktop.
Svgo config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
js2svg: { | |
pretty: true | |
}, | |
plugins: [ | |
{ | |
name: 'prefixIds', | |
params: { | |
prefixIds: true, | |
prefixClassNames: true | |
} | |
}, | |
{ | |
name: 'preset-default', | |
params: { | |
overrides: { | |
cleanupIds: { | |
minify: false | |
} | |
} | |
} | |
}, | |
{ | |
name: 'removeDimensions', | |
params: { | |
overrides: { | |
}, | |
}, | |
} | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment