Voici un résumé de la marche à suivre si vous prévoyez que la chaîne critique suivante retarde le chargement de la page lors de la mesure avec PageSpeed Insights. (Au 29 octobre 2020)
En faisant cela, j'ai réglé la vitesse de chargement.
Site de référence https://developer.mozilla.org/ja/docs/Web/HTML/Preloading_content https://developer.mozilla.org/ja/docs/Web/HTML/Attributes/crossorigin
ruby:application.html.erb
<link rel=”preload” as=”font” type=”font/woff2” href=”http://Domaine ou IP de votre site/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2” crossorigin>
<link rel=”preload” as=”font” type=”font/woff” href=”http://Domaine ou IP de votre site/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff” crossorigin>
<link rel=”preload” as=”font” type=”font/ttf” href=”http://Domaine ou IP de votre site/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf” crossorigin>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
c'est tout
Recommended Posts