9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { env } from '@typebot.io/lib'
|
|
|
|
const cloudViewerUrl = 'https://viewer.typebot.io'
|
|
|
|
export const guessApiHost = () =>
|
|
env('VIEWER_INTERNAL_URL') ??
|
|
env('VIEWER_URL')?.split(',')[0] ??
|
|
cloudViewerUrl
|