From 45462c49da5072e76e43220ce9e6be06b056b3c8 Mon Sep 17 00:00:00 2001 From: Tasos Tsournos <48796551+anavalo@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:18:13 +0200 Subject: [PATCH] Update use-non-blocking-javascript.md v4 is deprecated --- .../frontend-performance/content/use-non-blocking-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/best-practices/frontend-performance/content/use-non-blocking-javascript.md b/src/data/best-practices/frontend-performance/content/use-non-blocking-javascript.md index 75d74e0d4..ef0e5a85f 100644 --- a/src/data/best-practices/frontend-performance/content/use-non-blocking-javascript.md +++ b/src/data/best-practices/frontend-performance/content/use-non-blocking-javascript.md @@ -15,5 +15,5 @@ JavaScript blocks the normal parsing of the HTML document, so when the parser re - Add `async` (if the script doesn't rely on other scripts) or `defer` (if the script relies upon or is relied upon by an async script) as an attribute to your script tag. - If you have small scripts, maybe use inline script place above async scripts. -- [Remove Render-Blocking JavaScript](https://developers.google.com/speed/docs/insights/BlockingJS) +- [Remove Render-Blocking JavaScript](https://developers.google.com/speed/docs/insights/v5/get-started) - [Defer loading JavaScript](https://varvy.com/pagespeed/defer-loading-javascript.html)