Disable Rails Turbo requests on hover

Turbo v8 in Rails 7 is doing requests on hover: git pull. Trying to make a todo app with antipattern of modifying model with GET request it really confused me.


To disable it try solution from StackOverflow:

<meta name="turbo-prefetch" content="false" />

or


<a href="/" data-turbo-prefetch="false">Home</a>

<div data-turbo-prefetch="false">
  <a href="/">Home</a>
  ...
</div>

I just want the good old http requests at the beginning and later I’d like to hook up Turbo. Deeply integrated, deeply opinionated, that is Rails my friends.