/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './app/**/*.{js,ts,jsx,tsx,vue}', './components/**/*.{js,ts,jsx,tsx,vue}', './layouts/**/*.vue', './pages/**/*.vue', './plugins/**/*.{js,ts}', './nuxt.config.{js,ts}', './app.vue', ], theme: { extend: { // Let daisyUI handle the color variables }, }, plugins: [ // daisyUI is now configured in the CSS file using the new @plugin syntax ], }