mirror of
https://github.com/vercel-labs/json-render.git
synced 2026-09-14 13:41:32 +08:00
553c803422
* image * fixes * fixes * fix ci * fix ci * disable @next/next/no-img-element rule in ESLint configuration * update route.ts to use path.join for font resolution and adjust next-env.d.ts import path
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|