jQuery(document).ready(function($) {
console.log('HERE >>>>');
// Target the gallery wrapper element (replace with your actual selector)
var galleryWrapper = $('.wp-block-gallery');
// Initialize Lity on click of gallery image
galleryWrapper.find('a').on('click', function(event) {
event.preventDefault();
lity(this);
});
});