Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
390 Bytes
// @flow
export const IS_PROD = process.env.NODE_ENV === 'production';
export const SERVER_URL = IS_PROD
? // In production we want to redirect to /whatever
``
: // In development we gotta redirect to localhost:3001/whatever tho
'http://localhost:3001';
export const CLIENT_URL = IS_PROD
? `${window.location.protocol}//${window.location.host}`
: 'http://localhost:3000';