Rename app.module.(server|browser).ts to app.(server|browser).module.ts. Fixes #1228.

This commit is contained in:
Steve Sanderson
2017-08-25 11:02:02 -07:00
parent e2030fb1fa
commit 04fe1204a9
6 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModuleShared } from './app.shared.module';
import { AppComponent } from './components/app/app.component';
@NgModule({
bootstrap: [ AppComponent ],
imports: [
ServerModule,
AppModuleShared
]
})
export class AppModule {
}