mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 14:04:27 +01:00
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import { type Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|