Files
ai-service-front/tailwind.config.js
2026-02-04 14:43:22 +03:00

19 lines
396 B
JavaScript

// tailwind.config.js
export default {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
safelist: [
"!bg-slate-900/50",
"!bg-transparent",
"!bg-white/10",
"!bg-violet-600",
"!text-white",
"!text-slate-500",
"!text-slate-300",
"!text-slate-600",
"!border",
"!border-white/10",
"!border-none",
"!rounded-xl",
"!rounded-lg",
],
}