12 lines
248 B
JavaScript
Vendored
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')],
|
|
}
|
|
|