diff --git a/src/environments/environment.custom.ts b/src/environments/environment.custom.ts index 2b9d3d3f2b..ca17165b06 100644 --- a/src/environments/environment.custom.ts +++ b/src/environments/environment.custom.ts @@ -4,7 +4,7 @@ const NEW_SIMPLE_VM: string = window['env']['NEW_SIMPLE_VM'] || 'https://simplev export const environment: any = { WIKI_PRE: `https://${API_HOST}/wiki/`, - SIMPLEVM_WIKI_PRE: `https://${NEW_SIMPLE_VM}/wiki/`, + SIMPLEVM_WIKI_PRE: `${NEW_SIMPLE_VM}/wiki/`, NEW_SVM_PORTAL_LINK: `${NEW_SIMPLE_VM}/portal/webapp/`, vo: window['env']['VO'] || 3335, voName: VO_NAME, diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 5c7799bead..0d3e16ca7b 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -8,7 +8,7 @@ const NEW_SIMPLE_VM: string = window['env']['NEW_SIMPLE_VM'] || 'https://simplev export const environment: any = { WIKI_PRE: 'https://portal-dev.denbi.de/wiki/', - SIMPLEVM_WIKI_PRE: `https://${NEW_SIMPLE_VM}/wiki/`, + SIMPLEVM_WIKI_PRE: `${NEW_SIMPLE_VM}/wiki/`, NEW_SVM_PORTAL_LINK: 'http://localhost:4200/#/', production: false, vo: 3334,