| import type { Config } from "tailwindcss"; | |
| import typography from "@tailwindcss/typography"; | |
| export default { | |
| content: ["./app/**/*.{ts,tsx}", "./sanity/**/*.{ts,tsx}"], | |
| theme: { | |
| extend: { | |
| fontFamily: { | |
| sans: ["var(--font-inter)"], | |
| }, | |
| }, | |
| }, | |
| future: { | |
| hoverOnlyWhenSupported: true, | |
| }, | |
| plugins: [typography], | |
| } satisfies Config; | |