Created
December 24, 2024 12:09
-
-
Save GiuMagnani/dd35eea9d4cae3133fa6f18cfa814fd5 to your computer and use it in GitHub Desktop.
SVGO config file
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 = { | |
plugins: [ | |
"removeDimensions", | |
{ | |
name: 'preset-default', | |
params: { | |
overrides: { | |
removeViewBox: false, | |
// customize default plugin options | |
inlineStyles: { | |
onlyMatchedOnce: false, | |
}, | |
// or disable plugins | |
removeDoctype: false, | |
}, | |
}, | |
}, | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment