mirror of
https://github.com/tl-open-source/tl-rtc-file.git
synced 2025-10-05 15:36:58 +08:00
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: ['class', '[data-theme="dark"]'],
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
daisyui: {
|
|
themes: ['light', 'dark'],
|
|
},
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
};
|