personal website
0
fork

Configure Feed

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

at 63948bcacd935d80afcc9094ba83d8e39430a477 12 lines 269 B view raw
1/** @type {import('tailwindcss').Config} */ 2export default { 3 content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], 4 theme: { 5 extend: { 6 fontFamily: { 7 syne: ["SyneMono"] 8 } 9 }, 10 }, 11 plugins: [require("@tailwindcss/typography")] 12}