16 lines
301 B
JavaScript
16 lines
301 B
JavaScript
|
import daisyui from 'daisyui';
|
||
|
import typography from '@tailwindcss/typography';
|
||
|
|
||
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ['./src/**/*.{html,svelte,js,ts}'],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [daisyui, typography],
|
||
|
daisyui: {
|
||
|
themes: ["luxury"],
|
||
|
},
|
||
|
}
|
||
|
|