18 lines
354 B
TypeScript
18 lines
354 B
TypeScript
import type { Config } from "tailwindcss"
|
|
|
|
const config: Config = {
|
|
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["var(--font-inter)"],
|
|
mono: ["var(--font-mono)"],
|
|
heading: ["var(--font-roboto)"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|