]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
update Lighthouse URL
authorChristian Oliff <christianoliff@pm.me>
Thu, 30 Jun 2022 15:09:43 +0000 (00:09 +0900)
committerGeoSot <geo.sotis@gmail.com>
Thu, 30 Jun 2022 19:25:32 +0000 (22:25 +0300)
saves a HTTP redirect :-)

site/content/docs/5.2/customize/optimize.md

index 8574f3650af81c48173bf73ab8640a4b0f86a98f..e618ce23a023d732c30319dd05a424a6526da02f 100644 (file)
@@ -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.