import { Component, AfterViewInit } from '@angular/core'; import * as Prism from 'prismjs'; @Component({ selector: 'app-configuration', templateUrl: './configuration.component.html' }) export class ConfigurationComponent implements AfterViewInit { /** * @method ngAfterViewInit */ ngAfterViewInit() { Prism.highlightAll(); } }