Skip to content

Instantly share code, notes, and snippets.

@hgrimelid
Created September 5, 2023 12:08
Show Gist options
  • Save hgrimelid/c3c5b8ce41192f52283e25fb798e28b2 to your computer and use it in GitHub Desktop.
Save hgrimelid/c3c5b8ce41192f52283e25fb798e28b2 to your computer and use it in GitHub Desktop.
Svgo config
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