mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +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: [],
|
|
};
|