cuddle-templates/cuddle-leptos/tailwind.config.js
kjuulh c01c27a0a4
feat: update template
Signed-off-by: kjuulh <contact@kjuulh.io>
2025-01-11 22:22:39 +01:00

14 lines
272 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./crates/app/src/**/*.rs"],
transform: {
rs: (content) => content.replace(/(?:^|\s)class:/g, ' '),
},
},
theme: {
extend: {},
},
plugins: [],
}