13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import typography from "@tailwindcss/typography";
|
|
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [typography],
|
|
} satisfies Config;
|