Rails: How to disable turbolinks in Rails 5?
The following was copied from here. It’s for Rails 4, but I believe the steps are the same. Remove the gem ‘turbolinks’ line from Gemfile. Remove the //= require turbolinks from app/assets/javascripts/application.js. Remove the two “data-turbolinks-track” => true hash key/value pairs from app/views/layouts/application.html.erb. Edit: As of at least Rails 5 the last step should refer … Read more