14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/templates/**/*.html",
|
|
"./app/static/js/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
themes: ["light", "dark", "cupcake"],
|
|
},
|
|
}; |