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" }] }