updated tailwind

This commit is contained in:
Your Name
2025-10-24 18:16:48 -07:00
parent bf1dbe39a8
commit c097c7fe54
2 changed files with 14 additions and 5 deletions

View File

@@ -2,11 +2,12 @@
export default {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./index.html',
'./main.tsx',
'./App.tsx',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
'./**/*.{ts,tsx}',
'./contexts/**/*.{ts,tsx}',
'./types/**/*.{ts,tsx}',
],
prefix: "",
theme: {

View File

@@ -26,6 +26,14 @@
"@/*": ["./*"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
"vite.config.ts"
],
"references": [{ "path": "./tsconfig.node.json" }]
}