aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/tailwind.config.ts
blob: acee50509181c3dd7039f1a90a69fb29f8f98a3b (plain)
1
2
3
4
5
6
7
8
9
import type { Config } from "tailwindcss";

export default {
	content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
	theme: {
		extend: {},
	},
	plugins: [],
} satisfies Config;