mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
// tailwind.config.js
|
|
module.exports = {
|
|
content: [
|
|
"./blocks/**/*.{templ,html}",
|
|
"./pages/**/*.{templ,html}",
|
|
"./src/**/*.ts",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|