13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: {
|
||
|
relative: true,
|
||
|
files: ["*.html", "./app/**/*.rs"],
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|