17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import daisyui from "daisyui";
|
|
|
|
export default {
|
|
// Make sure all files that contain Tailwind/DaisyUI classes are included here
|
|
content: [
|
|
"./app/templates/**/*.html",
|
|
"./app/static/js/**/*.js"
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [daisyui],
|
|
daisyui: {
|
|
themes: ["light", "dark", "cupcake"]
|
|
}
|
|
}; |