Re-add root .gitignore, add missing src/lib/utils.ts shadcn helper

This commit is contained in:
2024-11-10 19:51:44 -06:00
parent df36b816cc
commit 00620539d8
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

View File

@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}