mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-23 00:59:22 -05:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: {
|
||
|
files: ["*.html", "./src/**/*.rs", "../../src/docs/**/*.rs"],
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
corePlugins: {
|
||
|
preflight: false,
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|