blubberbo / LolPickem

A pick'em type game for League of Legends fans
https://lolpickem.netlify.app/
0 stars 1 forks source link

Implement ng performance upgrades #95

Closed blubberbo closed 4 years ago

blubberbo commented 4 years ago

Following the guide here: https://itnext.io/improve-your-angular-apps-performance-66032f63dc09, implement various performance increases in the angular app

blubberbo commented 4 years ago

implemented lazy loading for the following components:

blubberbo commented 4 years ago

put the --es5-browser-support=false flag in the angular.json file

blubberbo commented 4 years ago

used providedIn: 'root' for the following services:

blubberbo commented 4 years ago

still need to implement <ng-container> instead of div wrappers where possible. can use :host css to apply any container styles

blubberbo commented 4 years ago

still need to implement <ng-container> instead of div wrappers where possible. can use :host css to apply any container styles

This has also been done