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;