11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
// "./internal/**/*.{go,js,templ,html}",
|
|
"./views/html/*.html"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|