mirror of
https://github.com/arkorty/DownLink.git
synced 2026-03-17 16:51:45 +00:00
11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|
|
|
|
export function getApiBaseUrl() {
|
|
return process.env.NEXT_PUBLIC_API_BASE_URL || "http://localhost:8080";
|
|
}
|