mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-16 03:32:17 +08:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
const { nextui } = require('@nextui-org/react')
|
||
|
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
'./src/renderer/src/**/*.{js,ts,jsx,tsx}',
|
||
|
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
darkMode: 'class',
|
||
|
plugins: [nextui()]
|
||
|
}
|