dchat/ui/tailwind.config.js

10 lines
194 B
JavaScript
Raw Permalink Normal View History

2023-04-16 20:40:48 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
2023-04-16 20:40:48 +02:00
}