feat: integrate Caddy manager into proxy host handler and enhance authorization middleware; update frontend components for improved UI and functionality

This commit is contained in:
Wikid82
2025-11-21 20:42:52 -05:00
parent 870af044f8
commit 94592c8515
14 changed files with 303 additions and 60 deletions
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}