[API Node] Use staging platform url while in dev environment (#3846)

This commit is contained in:
Christian Byrne
2025-05-10 13:04:51 -07:00
committed by GitHub
parent 974236ce5a
commit bb588ff44e
4 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
export const COMFY_API_BASE_URL = __USE_PROD_CONFIG__
? 'https://api.comfy.org'
: 'https://stagingapi.comfy.org'
export const COMFY_PLATFORM_BASE_URL = __USE_PROD_CONFIG__
? 'https://platform.comfy.org'
: 'https://stagingplatform.comfy.org'