This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-03-24 10:44:31 +01: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 20:14:17 +01:00
|
|
|
# issues with reverse proxies. Furthermore, we don't need those links,
|
2021-03-24 10:44:31 +01:00
|
|
|
# as we already output them as HTML link tags.
|
|
|
|
|
|
|
|
Rails.application.config.action_view.preload_links_header = false
|