theraPy/tailwind.config.js

12 lines
186 B
JavaScript
Raw Normal View History

2024-09-09 17:32:55 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.{html,htm}"],
theme: {
extend: {},
},
plugins: [
require('daisyui'),
],
}