Wisdom/tailwind.config.js

13 lines
220 B
JavaScript
Raw Normal View History

2024-10-19 23:04:20 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["*.html", "./src/**/*.rs",],
theme: {
extend: {
},
},
plugins: [
require('flowbite/plugin')
],
}