aboutsummaryrefslogtreecommitdiff
path: root/svgo.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'svgo.config.js')
-rw-r--r--svgo.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/svgo.config.js b/svgo.config.js
new file mode 100644
index 0000000..67471fb
--- /dev/null
+++ b/svgo.config.js
@@ -0,0 +1,12 @@
+module.exports = {
+ multipass: true,
+ plugins: [
+ 'preset-default',
+ {
+ name: "removeAttrs",
+ params: {
+ attrs: "style"
+ }
+ }
+ ],
+};