Force link to make a turbo_stream request in Rails
Adding the data-turbo-stream attribute to your link will force it to make a vnd.turbo-stream.html request instead of text/html.
<a href="/some-url" data-turbo-stream>Some URL</a>
Using a Rails link_to would look like this:
<%= link_to "Some URL", "/some-url", data: {turbo_stream: ""} %>
        
          Tweet