tailwind.config.js 249 B

12345678910111213
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./**/*.{js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {},
  9. },
  10. plugins: [
  11. require('@tailwindcss/typography'),
  12. ],
  13. }