This commit is contained in:
2025-12-07 15:58:07 +07:00
parent 75a641ab40
commit 942aeafb60
2211 changed files with 178727 additions and 89 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
content: [
"./template/**/*.html",
"./src/**/*.html",
"./src/**/*.js",
"./assets/script/*.js",
],
theme: {
extend: {
// bạn có thể khai báo thêm nếu muốn
},
},
plugins: [
require("daisyui"),
],
daisyui: {
themes: ["light", "dark"],
},
};