text4u
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

tailwind.config.js 374B

123456789101112131415161718
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. './resources/**/*.antlers.html',
  5. './resources/**/*.antlers.php',
  6. './resources/**/*.blade.php',
  7. './resources/**/*.vue',
  8. './content/**/*.md',
  9. ],
  10. theme: {
  11. extend: {},
  12. },
  13. plugins: [
  14. require('@tailwindcss/typography'),
  15. ],
  16. };