mirror of
https://github.com/AIPexStudio/AIPex.git
synced 2026-05-18 12:36:07 +00:00
- Implement custom MessageHandler with event-driven architecture - Fix OpenAI API tool_calls validation by ensuring complete responses - Resolve Tailwind CSS HMR issues by loading CSS in HTML - Add shadcn/ui components and AI element components - Migrate from Plasmo to Vite for better build control
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|