12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./templates/**/*.{html,htm}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('daisyui'),
|
||
|
],
|
||
|
}
|
||
|
|