Enables support for replaying user events (e.g. clicks) that happened on a page before hydration logic has completed. Once an application is hydrated, all captured events are replayed and relevant event listeners are executed.
API
function withEventReplay(): HydrationFeature<HydrationFeatureKind.EventReplay>;
Usage Notes
Basic example of how you can enable event replay in your application when bootstrapApplication function is used:
bootstrapApplication(AppComponent, {
providers: [provideClientHydration(withEventReplay())]
});