Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2022-06-30 18:09:43 +0300
committerGeoSot <geo.sotis@gmail.com>2022-06-30 22:25:32 +0300
commit4082a3b52d0803efe8414abdf07d57f340a27225 (patch)
treee7054cb5ad09c70577fe948177f279703e9a1d15
parent9400b8f2f9aab51a7d52114b9ee686456428087e (diff)
update Lighthouse URL
saves a HTTP redirect :-)
-rw-r--r--site/content/docs/5.2/customize/optimize.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.2/customize/optimize.md b/site/content/docs/5.2/customize/optimize.md
index 8574f3650a..e618ce23a0 100644
--- a/site/content/docs/5.2/customize/optimize.md
+++ b/site/content/docs/5.2/customize/optimize.md
@@ -77,7 +77,7 @@ Whenever possible, be sure to compress all the code you serve to your visitors.
While minifying and using compression might seem like enough, making your files non-blocking ones is also a big step in making your site well-optimized and fast enough.
-If you are using a [Lighthouse](https://developers.google.com/web/tools/lighthouse/) plugin in Google Chrome, you may have stumbled over FCP. [The First Contentful Paint](https://web.dev/fcp/) metric measures the time from when the page starts loading to when any part of the page's content is rendered on the screen.
+If you are using a [Lighthouse](https://developer.chrome.com/docs/lighthouse/overview/) plugin in Google Chrome, you may have stumbled over FCP. [The First Contentful Paint](https://web.dev/fcp/) metric measures the time from when the page starts loading to when any part of the page's content is rendered on the screen.
You can improve FCP by deferring non-critical JavaScript or CSS. What does that mean? Simply, JavaScript or stylesheets that don't need to be present on the first paint of your page should be marked with `async` or `defer` attributes.