n8n anonyme

This commit is contained in:
nBiqoz
2025-06-13 12:57:08 +02:00
parent 386950b630
commit 7fe5523d80
7 changed files with 1726 additions and 132 deletions

19
tailwind.config.ts Normal file
View File

@@ -0,0 +1,19 @@
// 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;