Browse Source

chore: Add PostCSS configuration

Miguel Ángel Moreno 2 năm trước cách đây
mục cha
commit
b2c3fecbd1
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  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
+  }
+}