Files
the-biergarten-app/tailwind.config.js
2023-01-23 20:13:25 -05:00

13 lines
274 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [require('daisyui')],
daisyui: {
logs: false,
themes: ['lemonade'],
},
};