mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
e2da72b76c
Why this change? According to https://web.dev/articles/preload-critical-assets, > By preloading a certain resource, you are telling the browser that you would like to fetch it sooner than the browser would otherwise discover it because you are certain that it is important for the current page. The preload resource hint is meant to tell the browser to fetch resources that it would not discover upfront or early. However, we are not using it the right way because we are literally adding the resource hint right before a `<script>` tag which means the browser would have discovered the resource even without the resource hint. What does this change do? This commit removes the preload resource hint which are added right before script tags since the optimization here is highly questionable at the expense of making our initial DOM larger. |
||
---|---|---|
.. | ||
application_helper.rb | ||
common_helper.rb | ||
email_helper.rb | ||
embed_helper.rb | ||
emoji_helper.rb | ||
list_helper.rb | ||
posts_helper.rb | ||
qunit_helper.rb | ||
splash_screen_helper.rb | ||
topic_post_bookmarkable_helper.rb | ||
topics_helper.rb | ||
user_notifications_helper.rb |