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