web-humas-fe/tailwind.config.js

18 lines
452 B
JavaScript
Raw Normal View History

2025-02-13 09:15:38 +00:00
import { heroui } from "@heroui/theme"
2024-01-05 06:57:30 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
2025-02-13 09:15:38 +00:00
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
2024-02-19 08:39:35 +00:00
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js"
2024-01-05 06:57:30 +00:00
],
theme: {
extend: {},
},
darkMode: "class",
2025-02-13 09:15:38 +00:00
plugins: [heroui()],
2024-01-05 06:57:30 +00:00
}