mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
18 lines
415 B
JavaScript
18 lines
415 B
JavaScript
import { heroui } from '@heroui/theme'
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./index.html',
|
|
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
darkMode: 'class',
|
|
plugins: [heroui()]
|
|
}
|