summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
+ },
+ },
+ },
+ ],
+};