13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
/** @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
|
|
],
|
|
} |