postcss.config.js 268 B

123456789101112
  1. module.exports = {
  2. plugins: {
  3. 'postcss-import': {},
  4. 'postcss-nested': {},
  5. 'postcss-import-ext-glob': {},
  6. 'tailwindcss/nesting': {},
  7. tailwindcss: {
  8. content: ['./**/*.jsx', '../apps/**/*.{js,jsx,ts,tsx}'],
  9. },
  10. autoprefixer: {},
  11. },
  12. }