mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: {
|
|
files: ["*.html", "./src/**/*.rs"],
|
|
transform: {
|
|
rs: (content) => content.replace(/(?:^|\s)class:/g, ' '),
|
|
},
|
|
},
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|