blob: 919fe72ec496194110b13672d0f7bc3bf8a68411 (
plain)
1
2
3
4
5
6
7
8
|
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}", "./templates/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}
|