Note, if you were using Turbolinks/Rails UJS in your app previously, you should remove them:
Remove the turbolinks gem from your Gemfile.
Run ./bin/bundle install
Run ./bin/yarn remove turbolinks @rails/ujs
Remove these from your application's JavaScript pack:
import Rails from "@rails/ujs"
import Turbolinks from "turbolinks"
Rails.start()
Turbolinks.start()