mirror of
https://github.com/Dokploy/examples.git
synced 2026-06-15 20:25:24 +02:00
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./app/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|