Hi @Kirill_Kat,
You can disable the swipe by adding the following custom code just before the </body>
<script>
var Webflow = Webflow || [];
Webflow.push(function () {
$('.w-slider').off('swipe');
});
</script>
This will disable the swipe gesture for both desktop and touch devices, but only on publish & export of your webflow site. (the swipe will still be active during preview mode)
Hope that helps!
-Dan