tailwind.config.js.twig 538 B

12345678910111213141516171819202122
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. '../../config/**/*.yaml',
  5. '../../pages/**/*.md',
  6. './blueprints/**/*.yaml',
  7. './js/**/*.js',
  8. './templates/**/*.twig',
  9. './{{ component.name|hyphenize }}.yaml',
  10. './{{ component.name|hyphenize }}.php'
  11. ],
  12. darkMode: 'class', //false or 'media' or 'class'
  13. theme: {},
  14. variants: {
  15. extend: {}
  16. },
  17. plugins: [
  18. require('@tailwindcss/forms'),
  19. require('@tailwindcss/typography'),
  20. require('tailwindcss-debug-screens')
  21. ]
  22. }