We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53219a8 commit a42e5cdCopy full SHA for a42e5cd
components.json
@@ -0,0 +1,16 @@
1
+{
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "default",
4
+ "rsc": true,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "tailwind.config.js",
8
+ "css": "src/app/globals.css",
9
+ "baseColor": "gray",
10
+ "cssVariables": true
11
+ },
12
+ "aliases": {
13
+ "utils": "@/lib/utils",
14
+ "components": "@/components"
15
+ }
16
+}
src/lib/utils.ts
@@ -0,0 +1,6 @@
+import { type ClassValue, clsx } from "clsx"
+import { twMerge } from "tailwind-merge"
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs))
0 commit comments