- create-next-app with TypeScript, App Router, Tailwind CSS - shadcn/ui initialized with defaults (button component + utils) - .env.example with DATABASE_URL and SESSION_SECRET placeholders - README.md with docs/runbooks/ reference Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|