2023-11-23 11:51:47 +00:00
|
|
|
import { clsx, type ClassValue } from "clsx";
|
|
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
|
2024-05-10 09:53:51 +00:00
|
|
|
export const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || "";
|
|
|
|
|
|
|
|
export const SPACE_BASE_PATH = process.env.NEXT_PUBLIC_SPACE_BASE_PATH || "";
|
|
|
|
|
|
|
|
export const WEB_BASE_URL = process.env.NEXT_PUBLIC_WEB_BASE_URL || "";
|
|
|
|
|
|
|
|
export const ASSET_PREFIX = SPACE_BASE_PATH;
|
2023-11-23 11:51:47 +00:00
|
|
|
|
2023-12-10 10:18:10 +00:00
|
|
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|