EdgeStore

Manual Installation Setup

If you're not using shadcn/ui, you can install the components manually. Follow the steps below to prepare for the components manual installation.

If you're not using shadcn/ui, you can install the components manually. Follow the steps below to prepare for the components manual installation.

Components installed manually do not use shadcn/ui specific colors.

Install dependencies

npm install tailwind-merge clsx react-dropzone lucide-react

Add the cn helper

src/lib/utils.ts
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs));
}

Start adding the components

Now you can follow the manual installation guide for the components you need.