IMAGE / web /src /lib /utils.ts
cjovs
Deploy chatgpt2api with bucket mounted at /app/data
66a73ac
Raw
History Blame Contribute Delete
169 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}