Files
sonr/nebula/tailwind.config.js
T

13 lines
218 B
JavaScript
Raw Normal View History

2024-09-25 22:09:15 -04:00
// tailwind.config.js
module.exports = {
2024-09-26 13:52:03 -04:00
content: [
"./blocks/**/*.{templ,html}",
"./pages/**/*.{templ,html}",
"./src/**/*.ts",
],
theme: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
2024-09-25 22:09:15 -04:00
};