cuddle-templates/cuddle-leptos/tailwind.config.js

14 lines
272 B
JavaScript
Raw Normal View History

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