summaryrefslogtreecommitdiff
path: root/tailwind.config.ts
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-08 21:31:00 +0200
committerYuval Adam <_@yuv.al>2025-05-08 22:27:03 +0200
commitc8d6dc54e2ee44daa00b11c6300f4f0d6ef32186 (patch)
tree0073da7bc68f5308610ed7d6d7bdc455ad4c6cf7 /tailwind.config.ts
parent7450fe585f1253bf30b9ccb7254019aafc5db088 (diff)
Initial migration to AstroJS
Diffstat (limited to 'tailwind.config.ts')
-rw-r--r--tailwind.config.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/tailwind.config.ts b/tailwind.config.ts
deleted file mode 100644
index d43da91..0000000
--- a/tailwind.config.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import type { Config } from "tailwindcss";
-
-const config: Config = {
- content: [
- "./pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
- ],
- theme: {
- extend: {
- colors: {
- background: "var(--background)",
- foreground: "var(--foreground)",
- },
- },
- },
- plugins: [],
-};
-export default config;