hestia/tailwind.config.ts
Benjamin Palko d055c4bc40 init
2024-12-06 16:14:24 -05:00

12 lines
229 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;