mirror of
https://github.com/Pacerino/CaddyProxyManager.git
synced 2026-05-15 12:21:38 -04:00
16 lines
315 B
JavaScript
16 lines
315 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
darkMode: 'media',
|
|
plugins: [
|
|
require('flowbite/plugin')
|
|
]
|
|
}
|