forked from github/plane
6 lines
231 B
TypeScript
6 lines
231 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL ?? "";
|
|
|
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs)); |