Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./lib/**/*.{ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)"],
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [typography],
} satisfies Config;