import { Component, inject } from '@angular/core'; import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core'; import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link'; import { EUI_ECL_LIST } from '@eui/ecl/components/ecl-list'; import { TranslateModule } from '@ngx-translate/core'; @Component({ templateUrl: './home.component.html', standalone: true, imports: [ TranslateModule, ...EUI_ECL_LINK, ...EUI_ECL_LIST, ], }) export class HomeComponent { protected config: EuiAppConfig = inject(CONFIG_TOKEN); constructor() { console.log(this.config); } }