File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
projects/bundle-test/src/app Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 403403 "outputPath" : " dist/bundle-test" ,
404404 "index" : " projects/bundle-test/src/index.html" ,
405405 "browser" : " projects/bundle-test/src/main.ts" ,
406+ "server" : " projects/bundle-test/src/main.server.ts" ,
406407 "polyfills" : [
407408 " zone.js"
408409 ],
418419 " node_modules"
419420 ]
420421 },
421- "server" : " projects/bundle-test/src/main.server.ts" ,
422422 "ssr" : {
423423 "entry" : " projects/bundle-test/server.ts"
424424 }
425425 },
426426 "configurations" : {
427427 "production" : {
428+ "statsJson" : true ,
428429 "budgets" : [
429430 {
430431 "type" : " initial" ,
431432 "maximumWarning" : " 500kb" ,
432433 "maximumError" : " 1mb"
433434 },
435+ {
436+ "type" : " bundle" ,
437+ "name" : " grid-component" ,
438+ "maximumWarning" : " 500kb" ,
439+ "maximumError" : " 1mb"
440+ },
434441 {
435442 "type" : " anyComponentStyle" ,
436443 "maximumWarning" : " 2kb" ,
Original file line number Diff line number Diff line change 11<!-- Toolbar -->
22< div role ="banner ">
3+ < igx-navbar > </ igx-navbar >
34 <!-- <igx-chip [resourceStrings]="chipStrings">Chip</igx-chip> -->
45 < router-outlet > </ router-outlet >
56</ div >
Original file line number Diff line number Diff line change 11import { Component } from '@angular/core' ;
2- import { ChipResourceStringsBG } from 'igniteui-angular-i18n' ;
32import { RouterOutlet } from '@angular/router' ;
3+ import { IgxNavbarComponent } from 'igniteui-angular/navbar' ;
44
55@Component ( {
66 selector : 'app-root' ,
77 templateUrl : './app.component.html' ,
88 styleUrls : [ './app.component.scss' ] ,
9- imports : [ RouterOutlet ]
9+ imports : [ RouterOutlet , IgxNavbarComponent ]
1010} )
1111export class AppComponent {
12- protected chipStrings = ChipResourceStringsBG ;
1312}
You can’t perform that action at this time.
0 commit comments