18 lines
452 B
JavaScript
18 lines
452 B
JavaScript
import { heroui } from "@heroui/theme"
|
|
|
|
/** @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}',
|
|
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
darkMode: "class",
|
|
plugins: [heroui()],
|
|
}
|