Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Make the API URI configurable (fixes #17)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdemin committed Oct 26, 2019
1 parent 9d95bb8 commit 90bf0fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/const.ts
@@ -1,4 +1,5 @@
export const baseURI: string = "https://amber.h.tdem.in/api";
export const baseURI: string =
process.env.REACT_APP_APIURI || "https://amber.h.tdem.in/api";

export const appVersion: string = "0.0.4";
export const appFullName: string = "Amber Web";
Expand Down

0 comments on commit 90bf0fc

Please sign in to comment.