Files
old-new-wiaas/frontend/src/config.js

9 lines
281 B
JavaScript
Raw Normal View History

2018-06-14 16:49:28 +02:00
const APPLICATION_NAME = 'Co-Market';
const API_VERSION = 'v2';
2018-07-30 16:20:51 +02:00
const API_SERVER_BASE = process.env.REACT_APP_API_URL;
const API_SERVER = API_SERVER_BASE;
2018-08-02 14:31:59 +02:00
const API_SERVER_LOGIN = API_SERVER + "/wp-admin";
2018-06-14 16:49:28 +02:00
2018-08-02 14:31:59 +02:00
export {API_SERVER_BASE, API_SERVER, APPLICATION_NAME, API_SERVER_LOGIN}