Fixes Docker Angular Build Process

This commit is contained in:
2023-10-11 19:56:06 -03:00
parent a03fc7e09e
commit 26e942a532
9 changed files with 22 additions and 181 deletions

View File

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