| 123456789101112131415 |
- /** @type {import('tailwindcss').Config} */
- import typography from "@tailwindcss/typography";
- module.exports = {
- content: [
- "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
- "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
- ],
- theme: {
- extend: {},
- },
- plugins: [typography],
- darkMode: "class",
- };
|