import { enableProdMode, importProvidersFrom } from '@angular/core'; import { bootstrapApplication } from '@angular/platform-browser'; import { RouterModule, Routes } from '@angular/router'; import { AppComponent } from './app/app.component'; import { environment } from './environments/environment'; if (environment.production) { enableProdMode(); } const routes: Routes = []; bootstrapApplication(AppComponent, { providers: [ importProvidersFrom(RouterModule.forRoot(routes)) ] });