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