niming/tailwind.config.ts

13 lines
222 B
TypeScript
Raw Normal View History

2024-10-27 18:29:40 +08:00
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [typography]
} as Config;