Files
QUZ/frontend/tailwind.config.js
T

13 lines
195 B
JavaScript
Raw Normal View History

2026-06-25 07:43:27 +09:00
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
2026-07-05 08:45:54 +00:00
themes: true,
2026-06-25 07:43:27 +09:00
},
}