// tailwind.config.js
module.exports = {
content: [
"./src/**/*.{html,js}", // Adjust the paths according to your project structure
"./node_modules/flowbite/**/*.js", // Include Flowbite's components
],
theme: {
extend: {},
},
plugins: [
require('flowbite/plugin') // Include Flowbite's plugin
],
};
> Note: Including ./node_modules/flowbite/<em>*/</em>.js
ensures that Tailwind scans Flowbite's components for class names.