Fixes Env Variables

This commit is contained in:
2023-10-11 21:18:31 -03:00
parent 0a14151f65
commit f9437c1f5d
5 changed files with 5 additions and 22 deletions

View File

@@ -1,5 +1,5 @@
export const environment = {
production: true,
backendPath: (<any>window).env['BACKEND_URL'],
backendOAuthPath: (<any>window).env['BACKEND_OAUTH_URL']
backendPath: (<any>window)['env']['BACKEND_URL'],
backendOAuthPath: (<any>window)['env']['BACKEND_OAUTH_URL']
};