You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.cjs 360 B

2 years ago
12345678910111213141516
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  4. theme: { extend: {} },
  5. plugins: [require('daisyui')],
  6. daisyui: {
  7. styled: true,
  8. themes: ['winter', 'night'],
  9. base: true,
  10. utils: true,
  11. logs: true,
  12. rtl: false,
  13. prefix: '',
  14. darkTheme: 'night',
  15. },
  16. }