15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./src/**/*.{rs,html}",
|
||
|
"./static/**/*.html",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [require("daisyui")],
|
||
|
daisyui: {
|
||
|
themes: ["retro", "coffee", "dracula"]
|
||
|
}
|
||
|
}
|