From c097c7fe545e4aacf205d1e7582b1e8ac9d06ad9 Mon Sep 17 00:00:00 2001 From: Your Name <36833212+sa3eedDev@users.noreply.github.com> Date: Fri, 24 Oct 2025 18:16:48 -0700 Subject: [PATCH] updated tailwind --- tailwind.config.js | 9 +++++---- tsconfig.json | 10 +++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index d442a06..7b02cff 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -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: { diff --git a/tsconfig.json b/tsconfig.json index 49a35a5..e820be8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,6 +26,14 @@ "@/*": ["./*"] } }, - "include": ["**/*.ts", "**/*.tsx"], + "include": [ + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules", + "dist", + "vite.config.ts" + ], "references": [{ "path": "./tsconfig.node.json" }] }