diff --git a/web-app/package-lock.json b/web-app/package-lock.json index cc98beb..aa53229 100644 --- a/web-app/package-lock.json +++ b/web-app/package-lock.json @@ -33,7 +33,6 @@ }, "devDependencies": { "@eslint/js": "^9.38.0", - "daisyui": "^5.3.7", "eslint": "^9.38.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-react": "^7.37.5", @@ -2907,16 +2906,6 @@ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, - "node_modules/daisyui": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.3.7.tgz", - "integrity": "sha512-0+8PaSGift0HlIQABCeZzWOBV5Nx/vsI2TihB9hbaEyZENPlZZz+se2JnAH5rz9gBYTyDLB7NJup8hkREr6WBw==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/saadeghi/daisyui?sponsor=1" - } - }, "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", 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;