Files
sonr/nebula/tailwind.config.js
T

13 lines
197 B
JavaScript
Raw Normal View History

2024-09-25 22:09:15 -04:00
// tailwind.config.js
module.exports = {
content: [
"./blocks/**/*.{templ,html}",
"./pages/**/*.{templ,html}",
"./src/**/*.ts",
],
theme: {
extend: {},
},
plugins: [],
};