Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/misc/utility/svgo.config.mjs
9896 views
1
export default {
2
multipass: true,
3
precision: 2,
4
js2svg: {
5
eol: "lf",
6
finalNewline: true,
7
},
8
plugins: [
9
{
10
name: "preset-default",
11
params: {
12
overrides: {
13
removeHiddenElems: false,
14
convertPathData: false,
15
},
16
},
17
},
18
"convertStyleToAttrs",
19
"removeScriptElement",
20
"removeStyleElement",
21
"reusePaths",
22
"sortAttrs",
23
],
24
};
25
26