In the file configuration.service.ts
there is this
private get configurationUrl(): string {
const path = (environment.configurationPath.startsWith('/') ? '' : '/') + environment.configurationPath; const baseUrl = this.window.document.baseURI; return ${baseUrl}${path};
}
I changed the first line because it is adding a backslash for I don’t know what reason.
private get configurationUrl(): string {
const path = environment.configurationPath; const baseUrl = this.window.document.baseURI; return ${baseUrl}${path};
}
And this solve the issue. So thank you all for your help, it made me think to look for this double backslash