Files
the-biergarten-app/tailwind.config.js
2023-01-18 20:51:41 -05:00

13 lines
284 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: ["coffee"],
},
};