/** @type {import('tailwindcss').Config} */ export default { content: [ './src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}', './node_modules/flowbite/**/*.js' // Ovo omogućuje Flowbite stilove ], theme: { extend: {}, }, plugins: [ require('flowbite/plugin') // Registrira Flowbite kao plugin ], }