tailwind.config.ts (view raw)
1import typography from '@tailwindcss/typography'; 2import type { Config } from 'tailwindcss'; 3 4export default { 5 content: ['./src/**/*.{html,js,svelte,ts}'], 6 7 theme: { 8 extend: {} 9 }, 10 11 plugins: [typography] 12} satisfies Config;