mirror of
https://git.victorphan.net/basketballcantho/ten-project.git
synced 2026-08-06 03:33:11 +07:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|