* docs(router): chalin copyedits * docs(router): bell copy edits + routing module order & inspect config
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// #docplaster
 | 
						|
// #docregion
 | 
						|
import { NgModule }       from '@angular/core';
 | 
						|
import { BrowserModule }  from '@angular/platform-browser';
 | 
						|
import { FormsModule }    from '@angular/forms';
 | 
						|
// #docregion inspect-config
 | 
						|
import { Router } from '@angular/router';
 | 
						|
 | 
						|
// #enddocregion inspect-config
 | 
						|
import { AppComponent }            from './app.component';
 | 
						|
import { AppRoutingModule }        from './app-routing.module';
 | 
						|
 | 
						|
import { HeroesModule }            from './heroes/heroes.module';
 | 
						|
import { ComposeMessageComponent } from './compose-message.component';
 | 
						|
import { LoginRoutingModule }      from './login-routing.module';
 | 
						|
import { LoginComponent }          from './login.component';
 | 
						|
import { PageNotFoundComponent }   from './not-found.component';
 | 
						|
 | 
						|
import { DialogService }           from './dialog.service';
 | 
						|
 | 
						|
@NgModule({
 | 
						|
  imports: [
 | 
						|
    BrowserModule,
 | 
						|
    FormsModule,
 | 
						|
    HeroesModule,
 | 
						|
    LoginRoutingModule,
 | 
						|
    AppRoutingModule
 | 
						|
  ],
 | 
						|
  declarations: [
 | 
						|
    AppComponent,
 | 
						|
    ComposeMessageComponent,
 | 
						|
    LoginComponent,
 | 
						|
    PageNotFoundComponent
 | 
						|
  ],
 | 
						|
  providers: [
 | 
						|
    DialogService
 | 
						|
  ],
 | 
						|
  bootstrap: [ AppComponent ]
 | 
						|
})
 | 
						|
// #docregion inspect-config
 | 
						|
export class AppModule {
 | 
						|
  // Diagnostic only: inspect router configuration
 | 
						|
  constructor(router: Router) {
 | 
						|
    console.log('Routes: ', JSON.stringify(router.config, undefined, 2));
 | 
						|
  }
 | 
						|
}
 | 
						|
// #enddocregion inspect-config
 |