Sfoglia il codice sorgente

chore: Add PostCSS configuration

Miguel Ángel Moreno 2 anni fa
parent
commit
b2c3fecbd1
1 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  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
+  }
+}