angular-movies icon indicating copy to clipboard operation
angular-movies copied to clipboard

A Angular Movies App Optimized for Performance

Results 14 angular-movies issues
Sort by recently updated
recently updated
newest added

Use input transforms wherever applicable. example before: ```typescript @Input({required: true}) set lazy(component: RxInputType) { this.connect('component', coerceObservable(component)); } ``` example after: ```typescript @Input({required: true, transform: (value: RxInputType) => coerceObservable(value)}) set lazy(component:...

feature

# Motivation Dynamic pages are hard to optimize for the LCP as we can't determine the LCP before executing the page. It is important to optimize the LCP because it...

bootstrap performance
LCP