blob: 76baa575ab8aba57a03610b8ccc518d029ae2f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./node_modules/flowbite/**/*.js'
],
theme: {
extend: {},
},
plugins: [
require('flowbite/plugin')
],
}
|