Last active
February 7, 2023 17:15
-
-
Save pladaria/69321af86ce165c2c1fc1c718b098dd0 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
multipass: true | |
plugins: | |
- addAttributesToSVGElement: false | |
- addClassesToSVGElement: false | |
- cleanupAttrs: true | |
- cleanupEnableBackground: true | |
- cleanupIDs: true | |
- cleanupListOfValues: true | |
- cleanupNumericValues: | |
floatPrecision: 2 | |
- collapseGroups: true | |
- convertColors: true | |
- convertPathData: true | |
- convertShapeToPath: true | |
- convertStyleToAttrs: true | |
- convertTransform: true | |
- mergePaths: true | |
- minifyStyles: true | |
- moveElemsAttrsToGroup: true | |
- moveGroupAttrsToElems: true | |
- removeAttrs: true | |
- removeComments: true | |
- removeDesc: true | |
- removeDimensions: true | |
- removeDoctype: true | |
- removeEditorsNSData: true | |
- removeElementsByAttr: true | |
- removeEmptyAttrs: true | |
- removeEmptyContainers: true | |
- removeEmptyText: true | |
- removeHiddenElems: true | |
- removeMetadata: true | |
- removeNonInheritableGroupAttrs: true | |
- removeRasterImages | |
- removeStyleElement: true | |
- removeTitle: true | |
- removeUnknownsAndDefaults: true | |
- removeUnusedNS: true | |
- removeUselessDefs: true | |
- removeUselessStrokeAndFill: true | |
- removeViewBox: true | |
- removeXMLNS: false | |
- removeXMLProcInst: true | |
- sortAttrs: true | |
- transformsWithOnePath: true | |
js2svg: | |
pretty: true | |
indent: ' ' |
@VincentVToscano Any luck figuring that out? I'm having the same issue
@bramchi I have had no luck with what I mentioned above. I have also had no luck minifying JSON-LD between these tags:
<script type="application/ld+json">…</script>
Have you had any luck with either? 🤞
@VincentVToscano Have you tried placing a regular svgo.config.js
file alongside your package.json? That has given me some good results in the past for other packages. It gets picked up by the svgo core library, regardless of any config flags. Not sure a yml file will work, so make sure its a plain JavaScript file. It should contain something like this, a list of plugins that you want to enable:
module.exports = {
plugins: [
'removeDoctype',
'removeXMLProcInst',
'removeComments',
'removeMetadata',
'removeEditorsNSData',
'cleanupAttrs',
'inlineStyles',
'minifyStyles',
// 'cleanupIDs',
'removeUselessDefs',
'cleanupNumericValues',
'convertColors',
'removeUnknownsAndDefaults',
'removeNonInheritableGroupAttrs',
'removeUselessStrokeAndFill',
// 'removeViewBox',
'cleanupEnableBackground',
'removeHiddenElems',
'removeEmptyText',
'convertShapeToPath',
'convertEllipseToCircle',
'moveElemsAttrsToGroup',
'moveGroupAttrsToElems',
'collapseGroups',
'convertPathData',
'convertTransform',
'removeEmptyAttrs',
'removeEmptyContainers',
'mergePaths',
'removeUnusedNS',
'sortDefsChildren',
'removeTitle',
'removeDesc'
]
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have any of you used this file via imagemin-cli? I am trying to pass the file above (with another option:
removeScriptElement: true
) but it doesnt seem to be working and I'm not getting an error. I still see<script>
elements in the outputted svg. Thanks in advance.imagemin ./assets/ --plugin.svgo --config=_build_configurations/svgo.config.yml
I've also tried it like this:
imagemin ./assets/ --plugin.svgo.config=_build_configurations/svgo.config.yml