Files
calendar/packages/features/embed/lib/constants.ts
T
Hariom BalharaandGitHub 564c84dade fix: App theme being used in routing-form embed (#19489)
* fix wrong theme routing-form embed

* fix wrong theme routing-form embed
2025-02-28 23:50:46 +05:30

10 lines
270 B
TypeScript

import { EMBED_LIB_URL, WEBAPP_URL } from "@calcom/lib/constants";
export const embedLibUrl = EMBED_LIB_URL;
export const EMBED_PREVIEW_HTML_URL = `${WEBAPP_URL}/embed/preview.html`;
export const enum EmbedTheme {
auto = "auto",
light = "light",
dark = "dark",
}