20 lines
395 B
TypeScript
20 lines
395 B
TypeScript
// tailwind.config.ts
|
|
|
|
import type { Config } from "tailwindcss";
|
|
import typography from "@tailwindcss/typography";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
typography, // C'est ici qu'on active le plugin pour la classe 'prose'
|
|
],
|
|
};
|
|
|
|
export default config;
|