all repos — tabemono @ 84c83e23ec2cdd455d117d9fe7a08a11c9e3a600

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;