Read-it-later social network
12
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 1c8dca85f6e16ca3f4a9b8c828a56a13f876414f 12 lines 235 B 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;