Angular/Rxjs pipe async does not work with ssr?
问题 I have an issue with the async pipe running on SSR. there are no errors, only an infinite loop (it seems that the server is waiting for the observable to be resolved). I am using: @nestjs/ng-universal Angular 9 Firebase Rxjs A simple case like this works: <p>{{ observable | async }}</p> But using structural directives do not work: ngIf <p *ngIf="(observable$ | async) > 5">{{ observable$ | async }}</p> Ngfor <p *ngFor="let item of items | async">{{ item }}</p> Using async is a good practice