fix: update environment variables names

This commit is contained in:
yassinedorbozgithub
2024-12-02 10:27:27 +01:00
parent a3bd044509
commit 65c52e645d
8 changed files with 13 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ export class ContentStub extends BaseSchema {
* Helper to return the internal url of this content.
*/
static getUrl(item: ContentElement): string {
return new URL('/content/view/' + item.id, config.apiPath).toString();
return new URL('/content/view/' + item.id, config.apiBaseUrl).toString();
}
/**