about summary refs log tree commit diff
path: root/postcss.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'postcss.config.js')
-rw-r--r--postcss.config.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 000000000..84701e4ad
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,13 @@
+module.exports = {
+  plugins: {
+    autoprefixer: {
+      browsers: [
+        'last 2 versions',
+        'IE >= 11',
+        'iOS >= 9',
+      ],
+    },
+    'postcss-object-fit-images': {},
+    cssnano: {},
+  },
+};