Add initial daisy ui
Some checks failed
Build Crate / build (push) Failing after 1m45s

This commit is contained in:
2024-08-29 23:29:28 -04:00
parent 4cb809f20f
commit 82648cfbae
5 changed files with 23 additions and 9 deletions

View File

@@ -1,14 +1,19 @@
const { default: daisyui } = require("daisyui");
module.exports = {
purge: {
mode: "all",
content: [
"./src/**/*.rs",
"./index.html",
"./src/**/*.html",
"./src/**/*.css",
],
mode: "all",
content: [
"./src/**/*.rs",
"./index.html",
"./src/**/*.html",
"./src/**/*.css",
],
},
theme: {},
variants: {},
plugins: [],
plugins: [require("daisyui")],
daisyui: {
themes: ["light"],
},
};