mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
445 B
TypeScript
10 lines
445 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 ? process.env.NEXT_PUBLIC_API_BASE_URL : "";
|
||
|
|
||
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|
||
|
|
||
|
export const resolveGeneralTheme = (resolvedTheme: string | undefined) =>
|
||
|
resolvedTheme?.includes("light") ? "light" : resolvedTheme?.includes("dark") ? "dark" : "system";
|