about summary refs log tree commit diff
path: root/config/initializers/preload_link_headers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/initializers/preload_link_headers.rb')
-rw-r--r--config/initializers/preload_link_headers.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/initializers/preload_link_headers.rb b/config/initializers/preload_link_headers.rb
new file mode 100644
index 000000000..9f21c45ec
--- /dev/null
+++ b/config/initializers/preload_link_headers.rb
@@ -0,0 +1,8 @@
+# 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
+# issues with reverse proxies. Furhermore, we don't need those links,
+# as we already output them as HTML link tags.
+
+Rails.application.config.action_view.preload_links_header = false