Fixed docker env bugs, and issues from PR

This commit is contained in:
Nedim Uka
2018-07-26 13:47:59 +02:00
parent 1f6b1043a4
commit 5c07b371a0
6 changed files with 21 additions and 17 deletions

View File

@@ -16,6 +16,6 @@ const API_SERVER_BASE = (() => {
return process.env.REACT_APP_DEV_URL;
})();
const API_SERVER = API_SERVER_BASE + '/' + API_VERSION;
const API_SERVER = API_SERVER_BASE
export {APPLICAITON_MODE, API_SERVER_BASE, API_SERVER, APPLICATION_NAME}