nexus-5-frontend-1/tailwind.config.ts
2026-01-26 11:25:38 -05:00

15 lines
379 B
TypeScript

import type { Config } from 'tailwindcss';
import typography from '@tailwindcss/typography';
import flowbitePlugin from 'flowbite/plugin';
const config = {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte/**/*.svelte'],
theme: {
extend: {}
},
plugins: [typography, flowbitePlugin]
} satisfies Config;
export default config;