File tree 2 files changed +3
-3
lines changed
packages/angular-cli/blueprints/ng2/files/__path__/app
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ const routes: Routes = [];
8
8
exports : [ RouterModule ] ,
9
9
providers : [ ]
10
10
} )
11
- export class < %= classifiedModuleName % > RoutingModule { }
11
+ export class AppRoutingModule { }
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { BrowserModule } from '@angular/platform-browser';
2
2
import { NgModule } from '@angular/core' ;
3
3
import { FormsModule } from '@angular/forms' ;
4
4
import { HttpModule } from '@angular/http' ; < % if ( routing ) { % >
5
- import { < %= classifiedModuleName % > RoutingModule } from './<%= dasherizedModuleName %> -routing.module' ; < % } % >
5
+ import { AppRoutingModule } from './app -routing.module' ; < % } % >
6
6
7
7
import { AppComponent } from './app.component' ;
8
8
@@ -14,7 +14,7 @@ import { AppComponent } from './app.component';
14
14
BrowserModule ,
15
15
FormsModule ,
16
16
HttpModule < % if ( routing ) { % > ,
17
- < %= classifiedModuleName % > RoutingModule < % } % >
17
+ AppRoutingModule < % } % >
18
18
] ,
19
19
providers : [ ] ,
20
20
bootstrap : [ AppComponent ]
You can’t perform that action at this time.
0 commit comments