|
12345678910111213141516171819202122232425262728 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
- theme: {
- extend: {
- // keyframes: {
- // toastAnimation: {
- // from: { opacity: '1' },
- // to: { opacity: '0' },
- // },
- // },
- // animation: {
- // toastAnimation: 'toastAnimation 0.5s ease-out',
- // },
- },
- },
- plugins: [require('daisyui')],
- daisyui: {
- styled: true,
- themes: ['winter', 'night'],
- base: true,
- utils: true,
- logs: true,
- rtl: false,
- prefix: '',
- darkTheme: 'night',
- },
- }
|