A deployable markdown editor that connects with your self hosted files and lets you edit in a beautiful interface
at main 18 lines 379 B view raw
1/** @type {import('tailwindcss').Config} */ 2export default { 3 darkMode: ['class'], 4 content: [ 5 './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', 6 ], 7 theme: { 8 extend: { 9 borderRadius: { 10 lg: 'var(--radius)', 11 md: 'calc(var(--radius) - 2px)', 12 sm: 'calc(var(--radius) - 4px)', 13 }, 14 colors: {}, 15 }, 16 }, 17 plugins: [], 18}