You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
273 B

  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. };