mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-13 15:44:35 +01:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{html,js,tsx,ts}"],
|
|
mode: "jit",
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
darkMode: "class",
|
|
plugins: []
|
|
} as Config;
|