This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-24 02:44:31 -07:00
|
|
|
# Since Rails 6.1, ActionView adds preload links for javascript files
|
|
|
|
# in the Links header per default.
|
|
|
|
|
|
|
|
# In our case, that will bloat headers too much and potentially cause
|
2022-02-22 11:14:17 -08:00
|
|
|
# issues with reverse proxies. Furthermore, we don't need those links,
|
2021-03-24 02:44:31 -07:00
|
|
|
# as we already output them as HTML link tags.
|
|
|
|
|
|
|
|
Rails.application.config.action_view.preload_links_header = false
|