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