A recent Lighthouse Report flagged the following issue.
Does not use passive listeners to improve scrolling performance
It also mentions...
Consider marking your touch and wheel event listeners as
passive
to improve your page's scroll performance.
How do I resolve this issue? It appears to be related to jQuery.
There was a long thread on this topic in https://github.com/jquery/jquery/issues/2871 in 2016
In short:
Is expected that this is added in jQuery 4 (4 years and still in
jQuery.event.special.touchstart = {
setup: function( _, ns, handle ){
this.addEventListener("touchstart", handle, { passive: true });
}
};