mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-06 16:10:09 +00:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
import { isProductionEnvironment } from './environment'
|
|
|
|
export const COMFY_API_BASE_URL = isProductionEnvironment()
|
|
? 'https://api.comfy.org'
|
|
: 'https://stagingapi.comfy.org'
|
|
|
|
export const COMFY_PLATFORM_BASE_URL = isProductionEnvironment()
|
|
? 'https://platform.comfy.org'
|
|
: 'https://stagingplatform.comfy.org'
|