summaryrefslogtreecommitdiff
path: root/tailwind.config.ts
diff options
context:
space:
mode:
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;