Files
heartbeatcat/tailwind.config.ts
2024-07-16 21:14:19 +08:00

19 lines
320 B
TypeScript

import { Config } from "tailwindcss";
export default <Config>{
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
"2xs": [
"0.625rem",
{
lineHeight: "0.625rem",
},
],
},
},
},
plugins: [],
};