mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-08 05:52:10 +07:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./internal/handler/views/*.templ",
|
||
|
"node_modules/preline/dist/*.js",
|
||
|
],
|
||
|
// enable dark mode via class strategy
|
||
|
// darkMode: "class",
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require("@tailwindcss/typography"),
|
||
|
require("@tailwindcss/forms"),
|
||
|
require("preline/plugin"),
|
||
|
],
|
||
|
};
|