We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0237a commit 7e9a41cCopy full SHA for 7e9a41c
tailwind.config.ts
@@ -1,13 +1,14 @@
1
-import type { Config } from "tailwindcss"
+import type { Config } from "tailwindcss";
2
3
const config = {
4
- darkMode: ["class"],
+ // @ts-ignore
5
+ darkMode: ["media"],
6
content: [
- './pages/**/*.{ts,tsx}',
7
- './components/**/*.{ts,tsx}',
8
- './app/**/*.{ts,tsx}',
9
- './src/**/*.{ts,tsx}',
10
- ],
+ "./pages/**/*.{ts,tsx}",
+ "./components/**/*.{ts,tsx}",
+ "./app/**/*.{ts,tsx}",
+ "./src/**/*.{ts,tsx}",
11
+ ],
12
prefix: "",
13
theme: {
14
container: {
@@ -75,6 +76,6 @@ const config = {
75
76
},
77
78
plugins: [require("tailwindcss-animate")],
-} satisfies Config
79
+} satisfies Config;
80
-export default config
81
+export default config;
0 commit comments