|
12345678910111213141516 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
- theme: { extend: {} },
- plugins: [require('daisyui')],
- daisyui: {
- styled: true,
- themes: ['winter', 'night'],
- base: true,
- utils: true,
- logs: true,
- rtl: false,
- prefix: '',
- darkTheme: 'night',
- },
- }
|