Template
1
0
Fork 0
goth.stack/stylegen/tailwind.config.js
2024-01-17 12:02:03 -07:00

12 lines
248 B
JavaScript
Vendored

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["../pages/**/*.{html,go}"],
theme: {
extend: {},
},
daisyui: {
themes: ["night"],
},
plugins: [require("daisyui"), require('@tailwindcss/typography')],
}