File size: 390 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// @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';
|