소스 검색

chore: Add PostCSS configuration

Miguel Ángel Moreno 2 년 전
부모
커밋
b2c3fecbd1
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  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
+  }
+}