diff --git a/web-app/package-lock.json b/web-app/package-lock.json index c0c9547..aa53229 100644 --- a/web-app/package-lock.json +++ b/web-app/package-lock.json @@ -2915,24 +2915,6 @@ "node": ">= 12" } }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "license": "MIT", - "engines": { - "node": ">= 12" - } - }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "license": "MIT", - "engines": { - "node": ">= 12" - } - }, "node_modules/data-view-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", diff --git a/web-app/src/index.css b/web-app/src/index.css index 2e2877b..2b88b1a 100644 --- a/web-app/src/index.css +++ b/web-app/src/index.css @@ -1,5 +1,4 @@ @import "tailwindcss"; -@plugin "daisyui"; .dark { --paragraph: 235, 236, 239; diff --git a/web-app/tailwind.config.ts b/web-app/tailwind.config.ts new file mode 100644 index 0000000..445efba --- /dev/null +++ b/web-app/tailwind.config.ts @@ -0,0 +1,5 @@ +import type { Config } from "tailwindcss"; + +export default { + content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"], +} satisfies Config;