swiper.on('init', function () {
if (window.location.hash) {
const hash = window.location.hash
const slideIndex = parseInt(hash.replace('#slide', ''), 10)
swiper.slideTo(slideIndex) // либо slideToLoop, если у вас включен loop
}
})
swiper.on('slideChange', function () {
window.location.hash = `#slide${swiper.activeIndex}` // либо realIndex, если включен loop
})