fixes
parent
035ebaf6a7
commit
2a3f326b84
|
|
@ -1,10 +1,4 @@
|
|||
import { InjectionToken } from '@angular/core'
|
||||
import { AppConfig } from 'src/environments/models/environment.model'
|
||||
|
||||
// export class AppConfig {
|
||||
// serviceUrl: string
|
||||
// someSecret: string
|
||||
// toggle1: boolean
|
||||
// }
|
||||
|
||||
export let APP_CONFIG = new InjectionToken<AppConfig>('APP_CONFIG')
|
||||
export let APP_CONFIG = new InjectionToken<AppConfig>('APP_CONFIG')
|
||||
|
|
@ -2,6 +2,6 @@ import { AppConfig } from './models/environment.model';
|
|||
|
||||
export const environment: AppConfig = {
|
||||
production: true,
|
||||
rssoUrl: "{{ $rssoUrl }}",
|
||||
backendUrl: "{{ $backendUrl }}"
|
||||
rssoUrl: "RSSO_URL",
|
||||
backendUrl: "BACKEND_API_URL"
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
import { AppConfig } from './models/environment.model';
|
||||
|
||||
export const environment: AppConfig = {
|
||||
production: false,
|
||||
rssoUrl: "sadasdsadsadasd",
|
||||
backendUrl: "http://localhost:8080/api"
|
||||
};
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
|
||||
|
||||
import { AppConfig } from './models/environment.model';
|
||||
|
||||
export const environment: AppConfig = {
|
||||
production: false,
|
||||
rssoUrl: "http://orf.at",
|
||||
rssoUrl: "#",
|
||||
backendUrl: "http://localhost:8080/api"
|
||||
};
|
||||
Loading…
Reference in New Issue