Files
ballistic-builder/tailwind.config.ts

19 lines
393 B
TypeScript
Raw Normal View History

2024-11-14 12:45:58 -05:00
import type { Config } from "tailwindcss";
export default {
content: [
2024-11-20 16:09:31 -05:00
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
2024-11-14 12:45:58 -05:00
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
} satisfies Config;