remove daisyui from tailwind config

This commit is contained in:
okhsunrog 2025-01-10 19:28:11 +03:00
parent 4f0704502a
commit f2bccfde17

View file

@ -1,30 +1,8 @@
import type { Config } from 'tailwindcss'
import daisyui from 'daisyui'
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [daisyui],
daisyui: {
themes: [
'cupcake',
'bumblebee',
'retro',
'halloween',
'fantasy',
'wireframe',
'luxury',
'dracula',
'autumn',
'business',
'lemonade',
'night',
'coffee',
'dim',
'sunset',
],
defaultTheme: 'lemonade',
},
} satisfies Config