This repository has been archived on 2021-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
perktree/frontend/src/config/constants.js

19 lines
306 B
JavaScript

const API_ROUTE = '/api';
const ENVIRONMENTS = {
'perktree.localhost': 'dev',
'perktree.theedgeofrage.com': 'prod',
};
const BACKEND_HOSTNAMES = {
'dev': 'http://perktree.localhost',
'prod': 'https://perktree.theedgeofrage.com',
};
export {
API_ROUTE,
ENVIRONMENTS,
BACKEND_HOSTNAMES,
};