Fix incorrect path for loading config.json in ConfigService
testing/ogGui-multibranch/pipeline/head Something is wrong with the build of this commit Details

pull/20/head
Lucas Lara García 2025-04-11 13:20:53 +02:00
parent cf5f2754c6
commit e9a00119aa
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export class ConfigService {
constructor(private http: HttpClient) {}
loadConfig() {
return this.http.get('/assets/config.json').pipe(
return this.http.get('assets/config.json').pipe(
catchError((error) => {
console.error('Error loading config.json', error);
return of({});