mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00: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;
|