15 lines
379 B
TypeScript
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;
|