diff --git a/lib/core/app-config/app-config.service.ts b/lib/core/app-config/app-config.service.ts index 9b8f2c6cc5..a256c2cef5 100644 --- a/lib/core/app-config/app-config.service.ts +++ b/lib/core/app-config/app-config.service.ts @@ -122,7 +122,9 @@ export class AppConfigService { */ load(): Promise { return new Promise(resolve => { - this.http.get('app.config.json').subscribe( + const configUrl = `app.config.json?v=${Date.now()}`; + + this.http.get(configUrl).subscribe( (data: any) => { this.config = Object.assign({}, this.config, data || {}); this.onLoadSubject.next(this.config);