summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2022-05-03 19:32:27 +0200
committerache <ache@ache.one>2022-05-03 19:32:27 +0200
commit8b22fc967d29d020aae5d457c7fc3201eec2b676 (patch)
tree47af5b170e43e4b2320670f0e8a244b90ce09a1c
parentEvent review (diff)
Add svgo config
-rw-r--r--svgo.config.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/svgo.config.js b/svgo.config.js
new file mode 100644
index 0000000..e8029c5
--- /dev/null
+++ b/svgo.config.js
@@ -0,0 +1,13 @@
+module.exports = {
+ plugins: [
+ {
+ name: 'preset-default',
+ params: {
+ overrides: {
+ cleanupIDs: false,
+ removeHiddenElems: false,
+ },
+ },
+ },
+ ],
+};