2024-01-15 13:28:35 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2024-03-09 09:43:55 +00:00
|
|
|
darkMode: ['class', '[data-theme="dark"]'],
|
2024-01-15 13:28:35 +00:00
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
2024-03-25 04:10:17 +00:00
|
|
|
"./node_modules/flowbite/**/*.js",
|
2024-01-15 13:28:35 +00:00
|
|
|
],
|
|
|
|
theme: {
|
2024-03-11 12:42:17 +00:00
|
|
|
extend: {},
|
2024-01-15 13:28:35 +00:00
|
|
|
},
|
2024-03-05 09:38:41 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/typography'),
|
2024-03-25 04:10:17 +00:00
|
|
|
require('flowbite/plugin')
|
2024-03-05 09:38:41 +00:00
|
|
|
],
|
2024-01-15 13:28:35 +00:00
|
|
|
}
|