1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00
Files
godot/misc/utility/svgo.config.mjs
2025-02-18 11:01:42 -06:00

25 lines
363 B
JavaScript

export default {
multipass: true,
precision: 2,
js2svg: {
eol: "lf",
finalNewline: true,
},
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeHiddenElems: false,
convertPathData: false,
},
},
},
"convertStyleToAttrs",
"removeScriptElement",
"removeStyleElement",
"reusePaths",
"sortAttrs",
],
};