mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
73f5e4a1d9
Found via `codespell -q 3 -S ./CHANGELOG.md,./AUTHORS.md,./config/locales,./app/javascript/mastodon/locales -L ba,keypair,medias,ro`
9 lines
361 B
Ruby
9 lines
361 B
Ruby
# 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. Furthermore, we don't need those links,
|
|
# as we already output them as HTML link tags.
|
|
|
|
Rails.application.config.action_view.preload_links_header = false
|