How can I stop Owl carousel from rewinding? I just want a seamless loop

As an example, try this setting

$("#owl-demo").owlCarousel({
  autoPlay: 3000, //Set AutoPlay to 3 seconds
  items : 4,
  rewindNav:false //**This

});

I came across the same error and found a quick fix for it. You can use rewindSpeed: 0 with rewindNav : true.

I tested with these settings:

$("#owl-slider-hero").owlCarousel({
    autoPlay : 5000, 
    lazyLoad:true,
    navigation : false,
    slideSpeed : 500,
    paginationSpeed : 400,
    singleItem : true,
    rewindNav : true,
    rewindSpeed: 0
});

By doing so, the script still rewinds, but you can hardly see it. The change is not smooth as in a continuous loop, but it is quite close.

Hope this helps someone!