/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], plugins: [require("@tailwindcss/typography"),require("daisyui")], daisyui: { themes: [ 'bumblebee', // this will be the default light theme 'business' ], darkTheme: 'business' // this will be the default dark theme } }