From e01163461fbd21bc49406095a6775d564575a131 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 17 Dec 2024 14:52:50 -0500 Subject: [PATCH] add dependency --- docs/DAISY.md | 3 +++ package.json | 1 + tailwind.config.ts | 6 +++++- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 docs/DAISY.md diff --git a/docs/DAISY.md b/docs/DAISY.md new file mode 100644 index 0000000..47728b9 --- /dev/null +++ b/docs/DAISY.md @@ -0,0 +1,3 @@ +# Experienced Issues + +- https://github.com/saadeghi/daisyui/issues/811 \ No newline at end of file diff --git a/package.json b/package.json index 22de0de..a0b08e1 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tailwind.config.ts b/tailwind.config.ts index 575e6fd..065ea6d 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -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; \ No newline at end of file