I am rendering a dynamic page, menu and other items in my application. I also want to change favicon as per configured by admin.
Say, for example, if when my pag
Outside , you can to use only Title class:
import {Title} from '@angular/platform-browser'; export class YourClass(){ constructor(private title: Title){} yourNameMethod(){ this.title.setTitle('your title'); } }