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