This commit is contained in:
MacRimi
2025-02-14 12:24:18 +01:00
parent 0ceae329d7
commit 7b9de69da6
4 changed files with 70 additions and 67 deletions

View File

@@ -1,7 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
@@ -67,6 +71,6 @@ module.exports = {
},
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
plugins: [require("tailwindcss-animate")],
}