postcss.config.js 295 B

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