It's a todo list.
7
fork

Configure Feed

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

at 408a43577ebb2daa81ffe7a8911a46b87f6aa6fb 11 lines 209 B view raw
1/** @type {import('tailwindcss').Config} */ 2export default { 3 content: ['./src/**/*.{html,js,svelte,ts}'], 4 theme: { 5 extend: {} 6 }, 7 plugins: [require("daisyui")], 8 daisyui: { 9 themes: true 10 } 11};