Fix incorrect path for loading config.json in ConfigService
testing/ogGui-multibranch/pipeline/head Something is wrong with the build of this commit
Details
testing/ogGui-multibranch/pipeline/head Something is wrong with the build of this commit
Details
parent
cf5f2754c6
commit
e9a00119aa
|
@ -12,7 +12,7 @@ export class ConfigService {
|
||||||
constructor(private http: HttpClient) {}
|
constructor(private http: HttpClient) {}
|
||||||
|
|
||||||
loadConfig() {
|
loadConfig() {
|
||||||
return this.http.get('/assets/config.json').pipe(
|
return this.http.get('assets/config.json').pipe(
|
||||||
catchError((error) => {
|
catchError((error) => {
|
||||||
console.error('Error loading config.json', error);
|
console.error('Error loading config.json', error);
|
||||||
return of({});
|
return of({});
|
||||||
|
|
Loading…
Reference in New Issue