* fix wrong theme routing-form embed * fix wrong theme routing-form embed
10 lines
270 B
TypeScript
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",
|
|
}
|