tailwind.config.js 348 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. import typography from "@tailwindcss/typography";
  3. module.exports = {
  4. content: [
  5. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
  7. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  8. ],
  9. theme: {
  10. extend: {},
  11. },
  12. plugins: [typography],
  13. darkMode: "class",
  14. };