Base Url implementation (#1824)
* Base Url implementation * PR requested changes
This commit is contained in:
parent
74f62fd5e2
commit
2cff1bcebe
12 changed files with 134 additions and 9 deletions
|
|
@ -1,5 +1,8 @@
|
|||
import { getBaseUrl } from "src/app/base-url.provider";
|
||||
const BASE_URL = getBaseUrl();
|
||||
|
||||
export const environment = {
|
||||
production: true,
|
||||
apiUrl: '/api/',
|
||||
hubUrl: '/hubs/'
|
||||
apiUrl: `${BASE_URL}api/`,
|
||||
hubUrl:`${BASE_URL}hubs/`
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue