mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
import typographyStyles from "./typography";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
theme: {
|
||
|
|
typography: typographyStyles,
|
||
|
|
},
|
||
|
|
} satisfies Config;
|