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