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