UNPKG

@xcpcio/board-app

Version:
36 lines (28 loc) 815 B
export const TITLE_SUFFIX = "Board - XCPCIO"; export const RATING_TITLE_SUFFIX = "Rating - XCPCIO"; export const BALLOON_TITLE_SUFFIX = "Balloon - XCPCIO"; export const RESOLVER_TITLE_SUFFIX = "Resolver - XCPCIO"; export const COUNTDOWN_TITLE_SUFFIX = "Countdown - XCPCIO"; export const SUBMISSION_TITLE_SUFFIX = "Submission - XCPCIO"; export const CDN_HOST = computed(() => { if (!window) { return ""; } return window.CDN_HOST; }); export const DATA_HOST = computed(() => { if (!window) { return ""; } return window.DATA_HOST; }); export const RATING_DATA_HOST = computed(() => { const dataHost = DATA_HOST.value; return dataHost.replace("/data/", "/rating-data/"); }); export const DATA_REGION = computed(() => { if (!window) { return ""; } return window.DATA_REGION; });