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