mirror of
https://github.com/aaronleetw/savage-tracking.git
synced 2024-11-14 19:11:39 -08:00
15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
|
import { type Config } from "tailwindcss";
|
||
|
import { fontFamily } from "tailwindcss/defaultTheme";
|
||
|
|
||
|
export default {
|
||
|
content: ["./src/**/*.tsx"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ["var(--font-sans)", ...fontFamily.sans],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
} satisfies Config;
|