Parcourir la source

chore: Add PostCSS configuration

Miguel Ángel Moreno il y a 2 ans
Parent
commit
b2c3fecbd1
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      postcss.config.js

+ 8 - 0
postcss.config.js

@@ -0,0 +1,8 @@
+module.exports = {
+  plugins: {
+    'postcss-import': {},
+    tailwindcss: {},
+    autoprefixer: {},
+    cssnano: process.env.NODE_ENV === 'production' ? {} : false
+  }
+}