postcss.config.js 273 B

123456789101112
  1. // @ts-check
  2. /** @type {import('postcss-load-config').Config} */
  3. export default {
  4. plugins: {
  5. "postcss-import": {},
  6. "tailwindcss/nesting": {},
  7. tailwindcss: {},
  8. autoprefixer: {},
  9. ...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})
  10. }
  11. };