mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
15 lines
310 B
JavaScript
15 lines
310 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { heroui } = require('@heroui/react')
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./src/renderer/src/**/*.{js,ts,jsx,tsx}',
|
|
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
darkMode: 'class',
|
|
plugins: [heroui()]
|
|
}
|