add dependency
This commit is contained in:
parent
992eb07f5c
commit
e01163461f
3 changed files with 9 additions and 1 deletions
3
docs/DAISY.md
Normal file
3
docs/DAISY.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Experienced Issues
|
||||
|
||||
- https://github.com/saadeghi/daisyui/issues/811
|
||||
|
|
@ -33,6 +33,7 @@
|
|||
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
||||
"@types/bun": "^1.1.14",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"daisyui": "^4.12.22",
|
||||
"eslint": "^9.7.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-svelte": "^2.36.0",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import typography from '@tailwindcss/typography';
|
||||
import daisyui from 'daisyui';
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
export default {
|
||||
|
|
@ -21,5 +22,8 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
plugins: [typography]
|
||||
plugins: [typography, daisyui],
|
||||
daisyui: {
|
||||
logs: false
|
||||
}
|
||||
} satisfies Config;
|
||||
Loading…
Add table
Reference in a new issue