lighthouse 11.3.0 → 11.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/core/audits/accessibility/aria-allowed-role.js +1 -1
  2. package/core/audits/bf-cache.d.ts +1 -0
  3. package/core/audits/bf-cache.js +12 -2
  4. package/core/audits/bootup-time.js +3 -0
  5. package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +0 -10
  6. package/core/audits/byte-efficiency/byte-efficiency-audit.js +6 -46
  7. package/core/audits/byte-efficiency/duplicated-javascript.d.ts +0 -6
  8. package/core/audits/byte-efficiency/duplicated-javascript.js +9 -38
  9. package/core/audits/byte-efficiency/legacy-javascript.d.ts +0 -11
  10. package/core/audits/byte-efficiency/legacy-javascript.js +5 -36
  11. package/core/audits/byte-efficiency/unminified-css.js +2 -2
  12. package/core/audits/byte-efficiency/unminified-javascript.js +2 -3
  13. package/core/audits/byte-efficiency/unused-javascript.js +10 -11
  14. package/core/audits/dobetterweb/uses-http2.d.ts +1 -1
  15. package/core/audits/dobetterweb/uses-http2.js +8 -5
  16. package/core/audits/layout-shift-elements.js +32 -17
  17. package/core/audits/metrics/cumulative-layout-shift.js +5 -1
  18. package/core/audits/metrics/max-potential-fid.d.ts +20 -0
  19. package/core/audits/metrics/max-potential-fid.js +69 -0
  20. package/core/audits/resource-summary.d.ts +11 -0
  21. package/core/audits/resource-summary.js +86 -0
  22. package/core/audits/third-party-cookies.d.ts +22 -0
  23. package/core/audits/third-party-cookies.js +112 -0
  24. package/core/audits/third-party-summary.d.ts +20 -2
  25. package/core/audits/third-party-summary.js +3 -48
  26. package/core/computed/entity-classification.js +1 -1
  27. package/core/computed/metrics/cumulative-layout-shift.d.ts +13 -1
  28. package/core/computed/metrics/cumulative-layout-shift.js +47 -1
  29. package/core/computed/metrics/lantern-first-contentful-paint.d.ts +50 -16
  30. package/core/computed/metrics/lantern-first-contentful-paint.js +56 -59
  31. package/core/computed/metrics/lantern-first-meaningful-paint.js +10 -12
  32. package/core/computed/metrics/lantern-largest-contentful-paint.js +9 -12
  33. package/core/computed/metrics/lantern-metric.d.ts +2 -2
  34. package/core/computed/metrics/lantern-metric.js +6 -5
  35. package/core/computed/resource-summary.d.ts +0 -1
  36. package/core/computed/resource-summary.js +2 -2
  37. package/core/computed/unused-css.js +2 -2
  38. package/core/config/constants.d.ts +2 -2
  39. package/core/config/constants.js +2 -2
  40. package/core/config/default-config.js +4 -0
  41. package/core/config/filters.js +1 -0
  42. package/core/gather/base-artifacts.js +2 -1
  43. package/core/gather/gatherers/css-usage.js +5 -0
  44. package/core/gather/gatherers/trace-elements.d.ts +6 -15
  45. package/core/gather/gatherers/trace-elements.js +15 -71
  46. package/core/gather/navigation-runner.js +1 -1
  47. package/core/lib/i18n/i18n.d.ts +2 -2
  48. package/core/lib/i18n/i18n.js +2 -2
  49. package/core/lib/minification-estimator.js +1 -1
  50. package/core/lib/network-recorder.d.ts +8 -0
  51. package/core/lib/network-recorder.js +13 -0
  52. package/core/lib/network-request.d.ts +11 -0
  53. package/core/lib/network-request.js +21 -1
  54. package/core/lib/rect-helpers.d.ts +5 -0
  55. package/core/lib/rect-helpers.js +15 -0
  56. package/core/lib/script-helpers.d.ts +34 -5
  57. package/core/lib/script-helpers.js +136 -0
  58. package/core/lib/url-utils.d.ts +6 -0
  59. package/core/lib/url-utils.js +14 -2
  60. package/core/runner.js +5 -1
  61. package/core/scripts/download-chrome.sh +56 -13
  62. package/dist/report/bundle.esm.js +30 -13
  63. package/dist/report/flow.js +32 -15
  64. package/dist/report/standalone.js +32 -15
  65. package/flow-report/src/i18n/i18n.d.ts +4 -0
  66. package/package.json +5 -4
  67. package/report/assets/styles.css +25 -8
  68. package/report/assets/templates.html +1 -1
  69. package/report/clients/standalone.js +1 -0
  70. package/report/renderer/components.js +2 -2
  71. package/report/renderer/explodey-gauge.js +0 -1
  72. package/report/renderer/performance-category-renderer.js +4 -2
  73. package/report/renderer/report-renderer.js +12 -1
  74. package/report/renderer/report-ui-features.js +3 -2
  75. package/report/renderer/report-utils.d.ts +2 -0
  76. package/report/renderer/report-utils.js +8 -4
  77. package/report/types/report-renderer.d.ts +2 -0
  78. package/shared/localization/locales/ar-XB.json +34 -25
  79. package/shared/localization/locales/ar.json +35 -26
  80. package/shared/localization/locales/bg.json +34 -25
  81. package/shared/localization/locales/ca.json +35 -26
  82. package/shared/localization/locales/cs.json +34 -25
  83. package/shared/localization/locales/da.json +51 -42
  84. package/shared/localization/locales/de.json +38 -29
  85. package/shared/localization/locales/el.json +34 -25
  86. package/shared/localization/locales/en-GB.json +35 -26
  87. package/shared/localization/locales/en-US.json +26 -5
  88. package/shared/localization/locales/en-XA.json +34 -25
  89. package/shared/localization/locales/en-XL.json +26 -5
  90. package/shared/localization/locales/es-419.json +34 -25
  91. package/shared/localization/locales/es.json +34 -25
  92. package/shared/localization/locales/fi.json +34 -25
  93. package/shared/localization/locales/fil.json +35 -26
  94. package/shared/localization/locales/fr.json +34 -25
  95. package/shared/localization/locales/he.json +35 -26
  96. package/shared/localization/locales/hi.json +35 -26
  97. package/shared/localization/locales/hr.json +35 -26
  98. package/shared/localization/locales/hu.json +34 -25
  99. package/shared/localization/locales/id.json +34 -25
  100. package/shared/localization/locales/it.json +34 -25
  101. package/shared/localization/locales/ja.json +34 -25
  102. package/shared/localization/locales/ko.json +35 -26
  103. package/shared/localization/locales/lt.json +34 -25
  104. package/shared/localization/locales/lv.json +35 -26
  105. package/shared/localization/locales/nl.json +35 -26
  106. package/shared/localization/locales/no.json +34 -25
  107. package/shared/localization/locales/pl.json +34 -25
  108. package/shared/localization/locales/pt-PT.json +35 -26
  109. package/shared/localization/locales/pt.json +35 -26
  110. package/shared/localization/locales/ro.json +34 -25
  111. package/shared/localization/locales/ru.json +35 -26
  112. package/shared/localization/locales/sk.json +35 -26
  113. package/shared/localization/locales/sl.json +35 -26
  114. package/shared/localization/locales/sr-Latn.json +34 -25
  115. package/shared/localization/locales/sr.json +34 -25
  116. package/shared/localization/locales/sv.json +35 -26
  117. package/shared/localization/locales/ta.json +35 -26
  118. package/shared/localization/locales/te.json +35 -26
  119. package/shared/localization/locales/th.json +34 -25
  120. package/shared/localization/locales/tr.json +35 -26
  121. package/shared/localization/locales/uk.json +34 -25
  122. package/shared/localization/locales/vi.json +34 -25
  123. package/shared/localization/locales/zh-HK.json +35 -26
  124. package/shared/localization/locales/zh-TW.json +38 -29
  125. package/shared/localization/locales/zh.json +34 -25
  126. package/shared/util.d.ts +14 -2
  127. package/shared/util.js +25 -3
  128. package/tsconfig.json +2 -0
  129. package/types/artifacts.d.ts +5 -2
@@ -639,7 +639,7 @@
639
639
  "message": "Use video formats for animated content"
640
640
  },
641
641
  "core/audits/byte-efficiency/legacy-javascript.js | description": {
642
- "message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code delivered to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/publish-modern-javascript/)"
642
+ "message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code delivered to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/articles/publish-modern-javascript)"
643
643
  },
644
644
  "core/audits/byte-efficiency/legacy-javascript.js | title": {
645
645
  "message": "Avoid serving legacy JavaScript to modern browsers"
@@ -993,7 +993,7 @@
993
993
  "message": "Expected size"
994
994
  },
995
995
  "core/audits/image-size-responsive.js | description": {
996
- "message": "Image natural dimensions should be proportional to the display size and the pixel ratio to maximise image clarity. [Learn how to provide responsive images](https://web.dev/serve-responsive-images/)."
996
+ "message": "Image natural dimensions should be proportional to the display size and the pixel ratio to maximise image clarity. [Learn how to provide responsive images](https://web.dev/articles/serve-responsive-images)."
997
997
  },
998
998
  "core/audits/image-size-responsive.js | failureTitle": {
999
999
  "message": "Serves images with low resolution"
@@ -1158,13 +1158,13 @@
1158
1158
  "message": "CLS contribution"
1159
1159
  },
1160
1160
  "core/audits/layout-shift-elements.js | description": {
1161
- "message": "These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/optimize-cls/)"
1161
+ "message": "These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
1162
1162
  },
1163
1163
  "core/audits/layout-shift-elements.js | title": {
1164
1164
  "message": "Avoid large layout shifts"
1165
1165
  },
1166
1166
  "core/audits/lcp-lazy-loaded.js | description": {
1167
- "message": "Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the Largest Contentful Paint. [Learn more about optimal lazy loading](https://web.dev/lcp-lazy-loading/)."
1167
+ "message": "Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the Largest Contentful Paint. [Learn more about optimal lazy loading](https://web.dev/articles/lcp-lazy-loading)."
1168
1168
  },
1169
1169
  "core/audits/lcp-lazy-loaded.js | failureTitle": {
1170
1170
  "message": "Largest contentful paint image was lazily loaded"
@@ -1173,7 +1173,7 @@
1173
1173
  "message": "Largest contentful paint image was not lazily loaded"
1174
1174
  },
1175
1175
  "core/audits/long-tasks.js | description": {
1176
- "message": "Lists the longest tasks on the main thread – useful for identifying worst contributors to input delay. [Learn how to avoid long main-thread tasks](https://web.dev/long-tasks-devtools/)"
1176
+ "message": "Lists the longest tasks on the main thread – useful for identifying worst contributors to input delay. [Learn how to avoid long main-thread tasks](https://web.dev/articles/long-tasks-devtools)"
1177
1177
  },
1178
1178
  "core/audits/long-tasks.js | displayValue": {
1179
1179
  "message": "{itemCount,plural, =1{# long task found}other{# long tasks found}}"
@@ -1221,7 +1221,7 @@
1221
1221
  "message": "Manifest has a maskable icon"
1222
1222
  },
1223
1223
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1224
- "message": "Cumulative layout shift measures the movement of visible elements within the viewport. [Learn more about the cumulative layout shift metric](https://web.dev/cls/)."
1224
+ "message": "Cumulative layout shift measures the movement of visible elements within the viewport. [Learn more about the cumulative layout shift metric](https://web.dev/articles/cls)."
1225
1225
  },
1226
1226
  "core/audits/metrics/first-contentful-paint.js | description": {
1227
1227
  "message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
@@ -1230,7 +1230,7 @@
1230
1230
  "message": "First Meaningful Paint measures when the primary content of a page is visible. [Learn more about the First Meaningful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
1231
1231
  },
1232
1232
  "core/audits/metrics/interaction-to-next-paint.js | description": {
1233
- "message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
1233
+ "message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/articles/inp)."
1234
1234
  },
1235
1235
  "core/audits/metrics/interactive.js | description": {
1236
1236
  "message": "Time to Interactive is the amount of time that it takes for the page to become fully interactive. [Learn more about the Time to Interactive metric](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
@@ -1260,7 +1260,7 @@
1260
1260
  "message": "Server Back-end Latencies"
1261
1261
  },
1262
1262
  "core/audits/no-unload-listeners.js | description": {
1263
- "message": "The `unload` event does not fire reliably and listening for it can prevent browser optimisations like the back-forward cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/bfcache/#never-use-the-unload-event)"
1263
+ "message": "The `unload` event does not fire reliably and listening for it can prevent browser optimisations like the back-forward cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1264
1264
  },
1265
1265
  "core/audits/no-unload-listeners.js | failureTitle": {
1266
1266
  "message": "Registers an `unload` listener"
@@ -1305,7 +1305,7 @@
1305
1305
  "message": "Performance budget"
1306
1306
  },
1307
1307
  "core/audits/preload-fonts.js | description": {
1308
- "message": "Preload `optional` fonts so that first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/preload-optional-fonts/)"
1308
+ "message": "Preload `optional` fonts so that first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/articles/preload-optional-fonts)"
1309
1309
  },
1310
1310
  "core/audits/preload-fonts.js | failureTitle": {
1311
1311
  "message": "Fonts with `font-display: optional` are not preloaded"
@@ -1314,7 +1314,7 @@
1314
1314
  "message": "Fonts with `font-display: optional` are preloaded"
1315
1315
  },
1316
1316
  "core/audits/prioritize-lcp-image.js | description": {
1317
- "message": "If the LCP element is dynamically added to the page, you should preload the image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/optimize-lcp/#optimize-when-the-resource-is-discovered)."
1317
+ "message": "If the LCP element is dynamically added to the page, you should preload the image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered)."
1318
1318
  },
1319
1319
  "core/audits/prioritize-lcp-image.js | title": {
1320
1320
  "message": "Preload largest contentful paint image"
@@ -1587,7 +1587,7 @@
1587
1587
  "message": "Timing budget"
1588
1588
  },
1589
1589
  "core/audits/unsized-images.js | description": {
1590
- "message": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/optimize-cls/#images-without-dimensions)"
1590
+ "message": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)"
1591
1591
  },
1592
1592
  "core/audits/unsized-images.js | failureTitle": {
1593
1593
  "message": "Image elements do not have explicit `width` and `height`"
@@ -1662,7 +1662,7 @@
1662
1662
  "message": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
1663
1663
  },
1664
1664
  "core/audits/work-during-interaction.js | description": {
1665
- "message": "This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
1665
+ "message": "This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/articles/inp)."
1666
1666
  },
1667
1667
  "core/audits/work-during-interaction.js | displayValue": {
1668
1668
  "message": "{timeInMs, number, milliseconds} ms spent on event ‘{interactionType}’"
@@ -1704,10 +1704,10 @@
1704
1704
  "message": "Best practices"
1705
1705
  },
1706
1706
  "core/config/default-config.js | a11yCategoryDescription": {
1707
- "message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/how-to-review/) is also encouraged."
1707
+ "message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/articles/how-to-review) is also encouraged."
1708
1708
  },
1709
1709
  "core/config/default-config.js | a11yCategoryManualDescription": {
1710
- "message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/how-to-review/)."
1710
+ "message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/articles/how-to-review)."
1711
1711
  },
1712
1712
  "core/config/default-config.js | a11yCategoryTitle": {
1713
1713
  "message": "Accessibility"
@@ -1794,10 +1794,10 @@
1794
1794
  "message": "Performance"
1795
1795
  },
1796
1796
  "core/config/default-config.js | pwaCategoryDescription": {
1797
- "message": "These checks validate the aspects of a progressive web app. [Learn what makes a good progressive web app](https://web.dev/pwa-checklist/)."
1797
+ "message": "These checks validate the aspects of a progressive web app. [Learn what makes a good progressive web app](https://web.dev/articles/pwa-checklist)."
1798
1798
  },
1799
1799
  "core/config/default-config.js | pwaCategoryManualDescription": {
1800
- "message": "These checks are required by the baseline [PWA checklist](https://web.dev/pwa-checklist/) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
1800
+ "message": "These checks are required by the baseline [PWA checklist](https://web.dev/articles/pwa-checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
1801
1801
  },
1802
1802
  "core/config/default-config.js | pwaCategoryTitle": {
1803
1803
  "message": "PWA"
@@ -1809,7 +1809,7 @@
1809
1809
  "message": "PWA Optimised"
1810
1810
  },
1811
1811
  "core/config/default-config.js | seoCategoryDescription": {
1812
- "message": "These checks ensure that your page is following basic search engine optimisation advice. There are many additional factors that Lighthouse does not score here that may affect your search ranking, including performance on [Core Web Vitals](https://web.dev/learn-core-web-vitals/). [Learn more about Google Search essentials](https://support.google.com/webmasters/answer/35769)."
1812
+ "message": "These checks ensure that your page is following basic search engine optimisation advice. There are many additional factors that Lighthouse does not score here that may affect your search ranking, including performance on [Core Web Vitals](https://web.dev/explore/vitals). [Learn more about Google Search essentials](https://support.google.com/webmasters/answer/35769)."
1813
1813
  },
1814
1814
  "core/config/default-config.js | seoCategoryManualDescription": {
1815
1815
  "message": "Run these additional validators on your site to check additional SEO best practices."
@@ -2643,7 +2643,7 @@
2643
2643
  "message": "Lighthouse was unable to reliably load the page that you requested. Make sure that you are testing the correct URL and that the server is properly responding to all requests. (Details: {errorDetails})"
2644
2644
  },
2645
2645
  "core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
2646
- "message": "Lighthouse was unable to reliably load the page that you requested. Make sure that you are testing the correct URL and that the server is properly responding to all requests. (Status code: {statusCode})"
2646
+ "message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Status code: {statusCode})"
2647
2647
  },
2648
2648
  "core/lib/lh-error.js | pageLoadTookTooLong": {
2649
2649
  "message": "Your page took too long to load. Please follow the opportunities in the report to reduce your page load time, and then try re-running Lighthouse. ({errorCode})"
@@ -2657,6 +2657,9 @@
2657
2657
  "core/lib/lh-error.js | urlInvalid": {
2658
2658
  "message": "The URL that you have provided appears to be invalid."
2659
2659
  },
2660
+ "core/lib/navigation-error.js | warningStatusCode": {
2661
+ "message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Status code: {errorCode})"
2662
+ },
2660
2663
  "core/lib/navigation-error.js | warningXhtml": {
2661
2664
  "message": "The page MIME type is XHTML: Lighthouse does not explicitly support this document type"
2662
2665
  },
@@ -3108,22 +3111,22 @@
3108
3111
  "message": "Use [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) in NitroPack to reduce the size of the files that are sent to the browser."
3109
3112
  },
3110
3113
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
3111
- "message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#format)."
3114
+ "message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxt.com/usage/nuxt-img#format)."
3112
3115
  },
3113
3116
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | offscreen-images": {
3114
- "message": "Use the `nuxt/image` component and set `loading=\"lazy\"` for offscreen images. [Learn more](https://image.nuxtjs.org/components/nuxt-img#loading)."
3117
+ "message": "Use the `nuxt/image` component and set `loading=\"lazy\"` for offscreen images. [Learn more](https://image.nuxt.com/usage/nuxt-img#loading)."
3115
3118
  },
3116
3119
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | prioritize-lcp-image": {
3117
- "message": "Use the `nuxt/image` component and specify `preload` for LCP image. [Learn more](https://image.nuxtjs.org/components/nuxt-img#preload)."
3120
+ "message": "Use the `nuxt/image` component and specify `preload` for LCP image. [Learn more](https://image.nuxt.com/usage/nuxt-img#preload)."
3118
3121
  },
3119
3122
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | unsized-images": {
3120
- "message": "Use the `nuxt/image` component and specify explicit `width` and `height`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#width--height)."
3123
+ "message": "Use the `nuxt/image` component and specify explicit `width` and `height`. [Learn more](https://image.nuxt.com/usage/nuxt-img#width-height)."
3121
3124
  },
3122
3125
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-optimized-images": {
3123
- "message": "Use the `nuxt/image` component and set the appropriate `quality`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#quality)."
3126
+ "message": "Use the `nuxt/image` component and set the appropriate `quality`. [Learn more](https://image.nuxt.com/usage/nuxt-img#quality)."
3124
3127
  },
3125
3128
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-responsive-images": {
3126
- "message": "Use the `nuxt/image` component and set the appropriate `sizes`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#sizes)."
3129
+ "message": "Use the `nuxt/image` component and set the appropriate `sizes`. [Learn more](https://image.nuxt.com/usage/nuxt-img#sizes)."
3127
3130
  },
3128
3131
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
3129
3132
  "message": "[Replace animated GIFs with video](https://web.dev/replace-gifs-with-videos/) for faster web page loads, and consider using modern file formats, such as [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) or [AV1,](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) to improve compression efficiency by greater than 30% over the current state-of-the-art video codec, VP9."
@@ -3359,6 +3362,12 @@
3359
3362
  "report/renderer/report-utils.js | runtimeAnalysisWindow": {
3360
3363
  "message": "Initial page load"
3361
3364
  },
3365
+ "report/renderer/report-utils.js | runtimeAnalysisWindowSnapshot": {
3366
+ "message": "Point-in-time snapshot"
3367
+ },
3368
+ "report/renderer/report-utils.js | runtimeAnalysisWindowTimespan": {
3369
+ "message": "User interactions timespan"
3370
+ },
3362
3371
  "report/renderer/report-utils.js | runtimeCustom": {
3363
3372
  "message": "Custom throttling"
3364
3373
  },
@@ -3393,10 +3402,10 @@
3393
3402
  "message": "User agent (network)"
3394
3403
  },
3395
3404
  "report/renderer/report-utils.js | runtimeSingleLoad": {
3396
- "message": "Single page load"
3405
+ "message": "Single-page session"
3397
3406
  },
3398
3407
  "report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
3399
- "message": "This data is taken from a single page load, as opposed to field data summarising many sessions."
3408
+ "message": "This data is taken from a single-page session, as opposed to field data summarising many sessions."
3400
3409
  },
3401
3410
  "report/renderer/report-utils.js | runtimeSlow4g": {
3402
3411
  "message": "Slow 4G throttling"
@@ -18,7 +18,7 @@
18
18
  "message": "`[aria-*]` attributes match their roles"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "ARIA `role`s enable assistive technologies to know the role of each element on the web page. If the `role` values are misspelled, not existing ARIA `role` values, or abstract roles, then the purpose of the element will not be communicated to users of assistive technologies. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.8/aria-allowed-roles)."
21
+ "message": "ARIA `role`s enable assistive technologies to know the role of each element on the web page. If the `role` values are misspelled, not existing ARIA `role` values, or abstract roles, then the purpose of the element will not be communicated to users of assistive technologies. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.8/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
24
  "message": "Values assigned to `role=\"\"` are not valid ARIA roles."
@@ -605,6 +605,9 @@
605
605
  "core/audits/bf-cache.js | title": {
606
606
  "message": "Page didn't prevent back/forward cache restoration"
607
607
  },
608
+ "core/audits/bf-cache.js | warningHeadless": {
609
+ "message": "Back/forward cache cannot be tested in old Headless Chrome (`--chrome-flags=\"--headless=old\"`). To see audit results, use the new Headless Chrome (`--chrome-flags=\"--headless=new\"`) or standard Chrome."
610
+ },
608
611
  "core/audits/bootup-time.js | chromeExtensionsWarning": {
609
612
  "message": "Chrome extensions negatively affected this page's load performance. Try auditing the page in incognito mode or from a Chrome profile without extensions."
610
613
  },
@@ -1155,10 +1158,10 @@
1155
1158
  "message": "Largest Contentful Paint element"
1156
1159
  },
1157
1160
  "core/audits/layout-shift-elements.js | columnContribution": {
1158
- "message": "CLS Contribution"
1161
+ "message": "Layout shift impact"
1159
1162
  },
1160
1163
  "core/audits/layout-shift-elements.js | description": {
1161
- "message": "These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
1164
+ "message": "These DOM elements were most affected by layout shifts. Some layout shifts may not be included in the CLS metric value due to [windowing](https://web.dev/articles/cls#what_is_cls). [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
1162
1165
  },
1163
1166
  "core/audits/layout-shift-elements.js | title": {
1164
1167
  "message": "Avoid large layout shifts"
@@ -1532,6 +1535,18 @@
1532
1535
  "core/audits/themed-omnibox.js | title": {
1533
1536
  "message": "Sets a theme color for the address bar."
1534
1537
  },
1538
+ "core/audits/third-party-cookies.js | description": {
1539
+ "message": "Support for third-party cookies will be removed in a future version of Chrome. [Learn more about phasing out third-party cookies](https://developer.chrome.com/en/docs/privacy-sandbox/third-party-cookie-phase-out/)."
1540
+ },
1541
+ "core/audits/third-party-cookies.js | displayValue": {
1542
+ "message": "{itemCount, plural,\n =1 {1 cookie found}\n other {# cookies found}\n }"
1543
+ },
1544
+ "core/audits/third-party-cookies.js | failureTitle": {
1545
+ "message": "Uses third-party cookies"
1546
+ },
1547
+ "core/audits/third-party-cookies.js | title": {
1548
+ "message": "Avoids third-party cookies"
1549
+ },
1535
1550
  "core/audits/third-party-facades.js | categoryCustomerSuccess": {
1536
1551
  "message": "{productName} (Customer Success)"
1537
1552
  },
@@ -3362,6 +3377,12 @@
3362
3377
  "report/renderer/report-utils.js | runtimeAnalysisWindow": {
3363
3378
  "message": "Initial page load"
3364
3379
  },
3380
+ "report/renderer/report-utils.js | runtimeAnalysisWindowSnapshot": {
3381
+ "message": "Point-in-time snapshot"
3382
+ },
3383
+ "report/renderer/report-utils.js | runtimeAnalysisWindowTimespan": {
3384
+ "message": "User interactions timespan"
3385
+ },
3365
3386
  "report/renderer/report-utils.js | runtimeCustom": {
3366
3387
  "message": "Custom throttling"
3367
3388
  },
@@ -3396,10 +3417,10 @@
3396
3417
  "message": "User agent (network)"
3397
3418
  },
3398
3419
  "report/renderer/report-utils.js | runtimeSingleLoad": {
3399
- "message": "Single page load"
3420
+ "message": "Single page session"
3400
3421
  },
3401
3422
  "report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
3402
- "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
3423
+ "message": "This data is taken from a single page session, as opposed to field data summarizing many sessions."
3403
3424
  },
3404
3425
  "report/renderer/report-utils.js | runtimeSlow4g": {
3405
3426
  "message": "Slow 4G throttling"
@@ -639,7 +639,7 @@
639
639
  "message": "[Ûšé vîðéö ƒöŕmåţš ƒöŕ åñîmåţéð çöñţéñţ one two three four five six seven eight]"
640
640
  },
641
641
  "core/audits/byte-efficiency/legacy-javascript.js | description": {
642
- "message": "[Þöļýƒîļļš åñð ţŕåñšƒöŕmš éñåбļé ļéĝåçý бŕöŵšéŕš ţö ûšé ñéŵ ĴåvåŠçŕîþţ ƒéåţûŕéš. Ĥöŵévéŕ, måñý åŕéñ'ţ ñéçéššåŕý ƒöŕ möðéŕñ бŕöŵšéŕš. Föŕ ýöûŕ бûñðļéð ĴåvåŠçŕîþţ, åðöþţ å möðéŕñ šçŕîþţ ðéþļöýméñţ šţŕåţéĝý ûšîñĝ möðûļé/ñömöðûļé ƒéåţûŕé ðéţéçţîöñ ţö ŕéðûçé ţĥé åmöûñţ öƒ çöðé šĥîþþéð ţö möðéŕñ бŕöŵšéŕš, ŵĥîļé ŕéţåîñîñĝ šûþþöŕţ ƒöŕ ļéĝåçý бŕöŵšéŕš. ᐅ[ᐊĻéåŕñ ĥöŵ ţö ûšé möðéŕñ ĴåvåŠçŕîþţᐅ](https://web.dev/publish-modern-javascript/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone thirtytwo thirtythree thirtyfour thirtyfive thirtysix thirtyseven thirtyeight thirtynine forty one two three four five six seven eight nine]"
642
+ "message": "[Þöļýƒîļļš åñð ţŕåñšƒöŕmš éñåбļé ļéĝåçý бŕöŵšéŕš ţö ûšé ñéŵ ĴåvåŠçŕîþţ ƒéåţûŕéš. Ĥöŵévéŕ, måñý åŕéñ'ţ ñéçéššåŕý ƒöŕ möðéŕñ бŕöŵšéŕš. Föŕ ýöûŕ бûñðļéð ĴåvåŠçŕîþţ, åðöþţ å möðéŕñ šçŕîþţ ðéþļöýméñţ šţŕåţéĝý ûšîñĝ möðûļé/ñömöðûļé ƒéåţûŕé ðéţéçţîöñ ţö ŕéðûçé ţĥé åmöûñţ öƒ çöðé šĥîþþéð ţö möðéŕñ бŕöŵšéŕš, ŵĥîļé ŕéţåîñîñĝ šûþþöŕţ ƒöŕ ļéĝåçý бŕöŵšéŕš. ᐅ[ᐊĻéåŕñ ĥöŵ ţö ûšé möðéŕñ ĴåvåŠçŕîþţᐅ](https://web.dev/articles/publish-modern-javascript)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone thirtytwo thirtythree thirtyfour thirtyfive thirtysix thirtyseven thirtyeight thirtynine forty one two three four five six seven eight nine]"
643
643
  },
644
644
  "core/audits/byte-efficiency/legacy-javascript.js | title": {
645
645
  "message": "[Åvöîð šéŕvîñĝ ļéĝåçý ĴåvåŠçŕîþţ ţö möðéŕñ бŕöŵšéŕš one two three four five six seven eight nine ten eleven]"
@@ -993,7 +993,7 @@
993
993
  "message": "[Éxþéçţéð šîžé one two]"
994
994
  },
995
995
  "core/audits/image-size-responsive.js | description": {
996
- "message": "[Îmåĝé ñåţûŕåļ ðîméñšîöñš šĥöûļð бé þŕöþöŕţîöñåļ ţö ţĥé ðîšþļåý šîžé åñð ţĥé þîxéļ ŕåţîö ţö måxîmîžé îmåĝé çļåŕîţý. ᐅ[ᐊĻéåŕñ ĥöŵ ţö þŕövîðé ŕéšþöñšîvé îmåĝéšᐅ](https://web.dev/serve-responsive-images/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
996
+ "message": "[Îmåĝé ñåţûŕåļ ðîméñšîöñš šĥöûļð бé þŕöþöŕţîöñåļ ţö ţĥé ðîšþļåý šîžé åñð ţĥé þîxéļ ŕåţîö ţö måxîmîžé îmåĝé çļåŕîţý. ᐅ[ᐊĻéåŕñ ĥöŵ ţö þŕövîðé ŕéšþöñšîvé îmåĝéšᐅ](https://web.dev/articles/serve-responsive-images)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
997
997
  },
998
998
  "core/audits/image-size-responsive.js | failureTitle": {
999
999
  "message": "[Šéŕvéš îmåĝéš ŵîţĥ ļöŵ ŕéšöļûţîöñ one two three four five six seven]"
@@ -1158,13 +1158,13 @@
1158
1158
  "message": "[ÇĻŠ Çöñţŕîбûţîöñ one two]"
1159
1159
  },
1160
1160
  "core/audits/layout-shift-elements.js | description": {
1161
- "message": "[Ţĥéšé ÐÖM éļéméñţš çöñţŕîбûţé möšţ ţö ţĥé ÇĻŠ öƒ ţĥé þåĝé. ᐅ[ᐊĻéåŕñ ĥöŵ ţö îmþŕövé ÇĻŠᐅ](https://web.dev/optimize-cls/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
1161
+ "message": "[Ţĥéšé ÐÖM éļéméñţš çöñţŕîбûţé möšţ ţö ţĥé ÇĻŠ öƒ ţĥé þåĝé. ᐅ[ᐊĻéåŕñ ĥöŵ ţö îmþŕövé ÇĻŠᐅ](https://web.dev/articles/optimize-cls)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
1162
1162
  },
1163
1163
  "core/audits/layout-shift-elements.js | title": {
1164
1164
  "message": "[Åvöîð ļåŕĝé ļåýöûţ šĥîƒţš one two three four five six]"
1165
1165
  },
1166
1166
  "core/audits/lcp-lazy-loaded.js | description": {
1167
- "message": "[Åбövé-ţĥé-ƒöļð îmåĝéš ţĥåţ åŕé ļåžîļý ļöåðéð ŕéñðéŕ ļåţéŕ îñ ţĥé þåĝé ļîƒéçýçļé, ŵĥîçĥ çåñ ðéļåý ţĥé ļåŕĝéšţ çöñţéñţƒûļ þåîñţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ öþţîmåļ ļåžý ļöåðîñĝᐅ](https://web.dev/lcp-lazy-loading/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
1167
+ "message": "[Åбövé-ţĥé-ƒöļð îmåĝéš ţĥåţ åŕé ļåžîļý ļöåðéð ŕéñðéŕ ļåţéŕ îñ ţĥé þåĝé ļîƒéçýçļé, ŵĥîçĥ çåñ ðéļåý ţĥé ļåŕĝéšţ çöñţéñţƒûļ þåîñţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ öþţîmåļ ļåžý ļöåðîñĝᐅ](https://web.dev/articles/lcp-lazy-loading)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
1168
1168
  },
1169
1169
  "core/audits/lcp-lazy-loaded.js | failureTitle": {
1170
1170
  "message": "[Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ îmåĝé ŵåš ļåžîļý ļöåðéð one two three four five six seven eight nine ten]"
@@ -1173,7 +1173,7 @@
1173
1173
  "message": "[Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ îmåĝé ŵåš ñöţ ļåžîļý ļöåðéð one two three four five six seven eight nine ten eleven]"
1174
1174
  },
1175
1175
  "core/audits/long-tasks.js | description": {
1176
- "message": "[Ļîšţš ţĥé ļöñĝéšţ ţåšķš öñ ţĥé måîñ ţĥŕéåð, ûšéƒûļ ƒöŕ îðéñţîƒýîñĝ ŵöŕšţ çöñţŕîбûţöŕš ţö îñþûţ ðéļåý. ᐅ[ᐊĻéåŕñ ĥöŵ ţö åvöîð ļöñĝ måîñ-ţĥŕéåð ţåšķšᐅ](https://web.dev/long-tasks-devtools/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
1176
+ "message": "[Ļîšţš ţĥé ļöñĝéšţ ţåšķš öñ ţĥé måîñ ţĥŕéåð, ûšéƒûļ ƒöŕ îðéñţîƒýîñĝ ŵöŕšţ çöñţŕîбûţöŕš ţö îñþûţ ðéļåý. ᐅ[ᐊĻéåŕñ ĥöŵ ţö åvöîð ļöñĝ måîñ-ţĥŕéåð ţåšķšᐅ](https://web.dev/articles/long-tasks-devtools)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
1177
1177
  },
1178
1178
  "core/audits/long-tasks.js | displayValue": {
1179
1179
  "message": "{itemCount,plural, =1{[# ļöñĝ ţåšķ ƒöûñð one two three four]}other{[# ļöñĝ ţåšķš ƒöûñð one two three four]}}"
@@ -1221,7 +1221,7 @@
1221
1221
  "message": "[Måñîƒéšţ ĥåš å måšķåбļé îçöñ one two three four five six]"
1222
1222
  },
1223
1223
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1224
- "message": "[Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méåšûŕéš ţĥé mövéméñţ öƒ vîšîбļé éļéméñţš ŵîţĥîñ ţĥé vîéŵþöŕţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méţŕîçᐅ](https://web.dev/cls/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
1224
+ "message": "[Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méåšûŕéš ţĥé mövéméñţ öƒ vîšîбļé éļéméñţš ŵîţĥîñ ţĥé vîéŵþöŕţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méţŕîçᐅ](https://web.dev/articles/cls)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
1225
1225
  },
1226
1226
  "core/audits/metrics/first-contentful-paint.js | description": {
1227
1227
  "message": "[Fîŕšţ Çöñţéñţƒûļ Þåîñţ måŕķš ţĥé ţîmé åţ ŵĥîçĥ ţĥé ƒîŕšţ ţéxţ öŕ îmåĝé îš þåîñţéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Fîŕšţ Çöñţéñţƒûļ Þåîñţ méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
@@ -1230,7 +1230,7 @@
1230
1230
  "message": "[Fîŕšţ Méåñîñĝƒûļ Þåîñţ méåšûŕéš ŵĥéñ ţĥé þŕîmåŕý çöñţéñţ öƒ å þåĝé îš vîšîбļé. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Fîŕšţ Méåñîñĝƒûļ Þåîñţ méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
1231
1231
  },
1232
1232
  "core/audits/metrics/interaction-to-next-paint.js | description": {
1233
- "message": "[Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéš þåĝé ŕéšþöñšîvéñéšš, ĥöŵ ļöñĝ îţ ţåķéš ţĥé þåĝé ţö vîšîбļý ŕéšþöñð ţö ûšéŕ îñþûţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/inp/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive]"
1233
+ "message": "[Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéš þåĝé ŕéšþöñšîvéñéšš, ĥöŵ ļöñĝ îţ ţåķéš ţĥé þåĝé ţö vîšîбļý ŕéšþöñð ţö ûšéŕ îñþûţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/articles/inp)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive]"
1234
1234
  },
1235
1235
  "core/audits/metrics/interactive.js | description": {
1236
1236
  "message": "[Ţîmé ţö Îñţéŕåçţîvé îš ţĥé åmöûñţ öƒ ţîmé îţ ţåķéš ƒöŕ ţĥé þåĝé ţö бéçömé ƒûļļý îñţéŕåçţîvé. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Ţîmé ţö Îñţéŕåçţîvé méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/interactive/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
@@ -1260,7 +1260,7 @@
1260
1260
  "message": "[Šéŕvéŕ Бåçķéñð Ļåţéñçîéš one two three]"
1261
1261
  },
1262
1262
  "core/audits/no-unload-listeners.js | description": {
1263
- "message": "[Ţĥé ᐅ`unload`ᐊ évéñţ ðöéš ñöţ ƒîŕé ŕéļîåбļý åñð ļîšţéñîñĝ ƒöŕ îţ çåñ þŕévéñţ бŕöŵšéŕ öþţîmîžåţîöñš ļîķé ţĥé Бåçķ-Föŕŵåŕð Çåçĥé. Ûšé ᐅ`pagehide`ᐊ öŕ ᐅ`visibilitychange`ᐊ évéñţš îñšţéåð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ûñļöåð évéñţ ļîšţéñéŕšᐅ](https://web.dev/bfcache/#never-use-the-unload-event)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven]"
1263
+ "message": "[Ţĥé ᐅ`unload`ᐊ évéñţ ðöéš ñöţ ƒîŕé ŕéļîåбļý åñð ļîšţéñîñĝ ƒöŕ îţ çåñ þŕévéñţ бŕöŵšéŕ öþţîmîžåţîöñš ļîķé ţĥé Бåçķ-Föŕŵåŕð Çåçĥé. Ûšé ᐅ`pagehide`ᐊ öŕ ᐅ`visibilitychange`ᐊ évéñţš îñšţéåð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ûñļöåð évéñţ ļîšţéñéŕšᐅ](https://web.dev/articles/bfcache#never_use_the_unload_event)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven]"
1264
1264
  },
1265
1265
  "core/audits/no-unload-listeners.js | failureTitle": {
1266
1266
  "message": "[Ŕéĝîšţéŕš åñ ᐅ`unload`ᐊ ļîšţéñéŕ one two three four five six]"
@@ -1305,7 +1305,7 @@
1305
1305
  "message": "[Þéŕƒöŕmåñçé бûðĝéţ one two three]"
1306
1306
  },
1307
1307
  "core/audits/preload-fonts.js | description": {
1308
- "message": "[Þŕéļöåð ᐅ`optional`ᐊ ƒöñţš šö ƒîŕšţ-ţîmé vîšîţöŕš måý ûšé ţĥém. ᐅ[ᐊĻéåŕñ möŕé åбöûţ þŕéļöåðîñĝ ƒöñţšᐅ](https://web.dev/preload-optional-fonts/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
1308
+ "message": "[Þŕéļöåð ᐅ`optional`ᐊ ƒöñţš šö ƒîŕšţ-ţîmé vîšîţöŕš måý ûšé ţĥém. ᐅ[ᐊĻéåŕñ möŕé åбöûţ þŕéļöåðîñĝ ƒöñţšᐅ](https://web.dev/articles/preload-optional-fonts)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
1309
1309
  },
1310
1310
  "core/audits/preload-fonts.js | failureTitle": {
1311
1311
  "message": "[Föñţš ŵîţĥ ᐅ`font-display: optional`ᐊ åŕé ñöţ þŕéļöåðéð one two three four five six seven]"
@@ -1314,7 +1314,7 @@
1314
1314
  "message": "[Föñţš ŵîţĥ ᐅ`font-display: optional`ᐊ åŕé þŕéļöåðéð one two three four five six]"
1315
1315
  },
1316
1316
  "core/audits/prioritize-lcp-image.js | description": {
1317
- "message": "[΃ ţĥé ĻÇÞ éļéméñţ îš ðýñåmîçåļļý åððéð ţö ţĥé þåĝé, ýöû šĥöûļð þŕéļöåð ţĥé îmåĝé îñ öŕðéŕ ţö îmþŕövé ĻÇÞ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ þŕéļöåðîñĝ ĻÇÞ éļéméñţšᐅ](https://web.dev/optimize-lcp/#optimize-when-the-resource-is-discovered)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
1317
+ "message": "[΃ ţĥé ĻÇÞ éļéméñţ îš ðýñåmîçåļļý åððéð ţö ţĥé þåĝé, ýöû šĥöûļð þŕéļöåð ţĥé îmåĝé îñ öŕðéŕ ţö îmþŕövé ĻÇÞ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ þŕéļöåðîñĝ ĻÇÞ éļéméñţšᐅ](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
1318
1318
  },
1319
1319
  "core/audits/prioritize-lcp-image.js | title": {
1320
1320
  "message": "[Þŕéļöåð Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ îmåĝé one two three four five six seven eight]"
@@ -1587,7 +1587,7 @@
1587
1587
  "message": "[Ţîmîñĝ бûðĝéţ one two]"
1588
1588
  },
1589
1589
  "core/audits/unsized-images.js | description": {
1590
- "message": "[Šéţ åñ éxþļîçîţ ŵîðţĥ åñð ĥéîĝĥţ öñ îmåĝé éļéméñţš ţö ŕéðûçé ļåýöûţ šĥîƒţš åñð îmþŕövé ÇĻŠ. ᐅ[ᐊĻéåŕñ ĥöŵ ţö šéţ îmåĝé ðîméñšîöñšᐅ](https://web.dev/optimize-cls/#images-without-dimensions)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty]"
1590
+ "message": "[Šéţ åñ éxþļîçîţ ŵîðţĥ åñð ĥéîĝĥţ öñ îmåĝé éļéméñţš ţö ŕéðûçé ļåýöûţ šĥîƒţš åñð îmþŕövé ÇĻŠ. ᐅ[ᐊĻéåŕñ ĥöŵ ţö šéţ îmåĝé ðîméñšîöñšᐅ](https://web.dev/articles/optimize-cls#images_without_dimensions)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty]"
1591
1591
  },
1592
1592
  "core/audits/unsized-images.js | failureTitle": {
1593
1593
  "message": "[Îmåĝé éļéméñţš ðö ñöţ ĥåvé éxþļîçîţ ᐅ`width`ᐊ åñð ᐅ`height`ᐊ one two three four five six seven eight nine ten]"
@@ -1662,7 +1662,7 @@
1662
1662
  "message": "[Ĥåš å ᐅ`<meta name=\"viewport\">`ᐊ ţåĝ ŵîţĥ ᐅ`width`ᐊ öŕ ᐅ`initial-scale`ᐊ one two three four five six seven]"
1663
1663
  },
1664
1664
  "core/audits/work-during-interaction.js | description": {
1665
- "message": "[Ţĥîš îš ţĥé ţĥŕéåð-бļöçķîñĝ ŵöŕķ öççûŕŕîñĝ ðûŕîñĝ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéméñţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/inp/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
1665
+ "message": "[Ţĥîš îš ţĥé ţĥŕéåð-бļöçķîñĝ ŵöŕķ öççûŕŕîñĝ ðûŕîñĝ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéméñţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/articles/inp)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
1666
1666
  },
1667
1667
  "core/audits/work-during-interaction.js | displayValue": {
1668
1668
  "message": "[ᐅ{timeInMs, number, milliseconds}ᐊ mš šþéñţ öñ évéñţ 'ᐅ{interactionType}ᐊ' one two three four five six]"
@@ -1704,10 +1704,10 @@
1704
1704
  "message": "[Бéšţ þŕåçţîçéš one two]"
1705
1705
  },
1706
1706
  "core/config/default-config.js | a11yCategoryDescription": {
1707
- "message": "[Ţĥéšé çĥéçķš ĥîĝĥļîĝĥţ öþþöŕţûñîţîéš ţö ᐅ[ᐊîmþŕövé ţĥé åççéššîбîļîţý öƒ ýöûŕ ŵéб åþþᐅ](https://developer.chrome.com/docs/lighthouse/accessibility/)ᐊ. Åûţömåţîç ðéţéçţîöñ çåñ öñļý ðéţéçţ å šûбšéţ öƒ îššûéš åñð ðöéš ñöţ ĝûåŕåñţéé ţĥé åççéššîбîļîţý öƒ ýöûŕ ŵéб åþþ, šö ᐅ[ᐊmåñûåļ ţéšţîñĝᐅ](https://web.dev/how-to-review/)ᐊ îš åļšö éñçöûŕåĝéð. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone]"
1707
+ "message": "[Ţĥéšé çĥéçķš ĥîĝĥļîĝĥţ öþþöŕţûñîţîéš ţö ᐅ[ᐊîmþŕövé ţĥé åççéššîбîļîţý öƒ ýöûŕ ŵéб åþþᐅ](https://developer.chrome.com/docs/lighthouse/accessibility/)ᐊ. Åûţömåţîç ðéţéçţîöñ çåñ öñļý ðéţéçţ å šûбšéţ öƒ îššûéš åñð ðöéš ñöţ ĝûåŕåñţéé ţĥé åççéššîбîļîţý öƒ ýöûŕ ŵéб åþþ, šö ᐅ[ᐊmåñûåļ ţéšţîñĝᐅ](https://web.dev/articles/how-to-review)ᐊ îš åļšö éñçöûŕåĝéð. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone]"
1708
1708
  },
1709
1709
  "core/config/default-config.js | a11yCategoryManualDescription": {
1710
- "message": "[Ţĥéšé îţémš åððŕéšš åŕéåš ŵĥîçĥ åñ åûţömåţéð ţéšţîñĝ ţööļ çåññöţ çövéŕ. Ļéåŕñ möŕé îñ öûŕ ĝûîðé öñ ᐅ[ᐊçöñðûçţîñĝ åñ åççéššîбîļîţý ŕévîéŵᐅ](https://web.dev/how-to-review/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
1710
+ "message": "[Ţĥéšé îţémš åððŕéšš åŕéåš ŵĥîçĥ åñ åûţömåţéð ţéšţîñĝ ţööļ çåññöţ çövéŕ. Ļéåŕñ möŕé îñ öûŕ ĝûîðé öñ ᐅ[ᐊçöñðûçţîñĝ åñ åççéššîбîļîţý ŕévîéŵᐅ](https://web.dev/articles/how-to-review)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
1711
1711
  },
1712
1712
  "core/config/default-config.js | a11yCategoryTitle": {
1713
1713
  "message": "[Åççéššîбîļîţý one two]"
@@ -1794,10 +1794,10 @@
1794
1794
  "message": "[Þéŕƒöŕmåñçé one two]"
1795
1795
  },
1796
1796
  "core/config/default-config.js | pwaCategoryDescription": {
1797
- "message": "[Ţĥéšé çĥéçķš våļîðåţé ţĥé åšþéçţš öƒ å Þŕöĝŕéššîvé Ŵéб Åþþ. ᐅ[ᐊĻéåŕñ ŵĥåţ måķéš å ĝööð Þŕöĝŕéššîvé Ŵéб Åþþᐅ](https://web.dev/pwa-checklist/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
1797
+ "message": "[Ţĥéšé çĥéçķš våļîðåţé ţĥé åšþéçţš öƒ å Þŕöĝŕéššîvé Ŵéб Åþþ. ᐅ[ᐊĻéåŕñ ŵĥåţ måķéš å ĝööð Þŕöĝŕéššîvé Ŵéб Åþþᐅ](https://web.dev/articles/pwa-checklist)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
1798
1798
  },
1799
1799
  "core/config/default-config.js | pwaCategoryManualDescription": {
1800
- "message": "[Ţĥéšé çĥéçķš åŕé ŕéqûîŕéð бý ţĥé бåšéļîñé ᐅ[ᐊÞŴÅ Çĥéçķļîšţᐅ](https://web.dev/pwa-checklist/)ᐊ бûţ åŕé ñöţ åûţömåţîçåļļý çĥéçķéð бý Ļîĝĥţĥöûšé. Ţĥéý ðö ñöţ 僃éçţ ýöûŕ šçöŕé бûţ îţ'š îmþöŕţåñţ ţĥåţ ýöû véŕîƒý ţĥém måñûåļļý. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix]"
1800
+ "message": "[Ţĥéšé çĥéçķš åŕé ŕéqûîŕéð бý ţĥé бåšéļîñé ᐅ[ᐊÞŴÅ Çĥéçķļîšţᐅ](https://web.dev/articles/pwa-checklist)ᐊ бûţ åŕé ñöţ åûţömåţîçåļļý çĥéçķéð бý Ļîĝĥţĥöûšé. Ţĥéý ðö ñöţ 僃éçţ ýöûŕ šçöŕé бûţ îţ'š îmþöŕţåñţ ţĥåţ ýöû véŕîƒý ţĥém måñûåļļý. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix]"
1801
1801
  },
1802
1802
  "core/config/default-config.js | pwaCategoryTitle": {
1803
1803
  "message": "[ÞŴÅ one]"
@@ -1809,7 +1809,7 @@
1809
1809
  "message": "[ÞŴÅ Öþţîmîžéð one two]"
1810
1810
  },
1811
1811
  "core/config/default-config.js | seoCategoryDescription": {
1812
- "message": "[Ţĥéšé çĥéçķš éñšûŕé ţĥåţ ýöûŕ þåĝé îš ƒöļļöŵîñĝ бåšîç šéåŕçĥ éñĝîñé öþţîmîžåţîöñ åðvîçé. Ţĥéŕé åŕé måñý åððîţîöñåļ ƒåçţöŕš Ļîĝĥţĥöûšé ðöéš ñöţ šçöŕé ĥéŕé ţĥåţ måý 僃éçţ ýöûŕ šéåŕçĥ ŕåñķîñĝ, îñçļûðîñĝ þéŕƒöŕmåñçé öñ ᐅ[ᐊÇöŕé Ŵéб Vîţåļšᐅ](https://web.dev/learn-core-web-vitals/)ᐊ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ Ĝööĝļé Šéåŕçĥ Éššéñţîåļšᐅ](https://support.google.com/webmasters/answer/35769)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone thirtytwo thirtythree thirtyfour thirtyfive]"
1812
+ "message": "[Ţĥéšé çĥéçķš éñšûŕé ţĥåţ ýöûŕ þåĝé îš ƒöļļöŵîñĝ бåšîç šéåŕçĥ éñĝîñé öþţîmîžåţîöñ åðvîçé. Ţĥéŕé åŕé måñý åððîţîöñåļ ƒåçţöŕš Ļîĝĥţĥöûšé ðöéš ñöţ šçöŕé ĥéŕé ţĥåţ måý 僃éçţ ýöûŕ šéåŕçĥ ŕåñķîñĝ, îñçļûðîñĝ þéŕƒöŕmåñçé öñ ᐅ[ᐊÇöŕé Ŵéб Vîţåļšᐅ](https://web.dev/explore/vitals)ᐊ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ Ĝööĝļé Šéåŕçĥ Éššéñţîåļšᐅ](https://support.google.com/webmasters/answer/35769)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone thirtytwo thirtythree thirtyfour thirtyfive]"
1813
1813
  },
1814
1814
  "core/config/default-config.js | seoCategoryManualDescription": {
1815
1815
  "message": "[Ŕûñ ţĥéšé åððîţîöñåļ våļîðåţöŕš öñ ýöûŕ šîţé ţö çĥéçķ åððîţîöñåļ ŠÉÖ бéšţ þŕåçţîçéš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
@@ -2657,6 +2657,9 @@
2657
2657
  "core/lib/lh-error.js | urlInvalid": {
2658
2658
  "message": "[Ţĥé ÛŔĻ ýöû ĥåvé þŕövîðéð åþþéåŕš ţö бé îñvåļîð. one two three four five six seven eight nine ten]"
2659
2659
  },
2660
+ "core/lib/navigation-error.js | warningStatusCode": {
2661
+ "message": "[Ļîĝĥţĥöûšé ŵåš ûñåбļé ţö ŕéļîåбļý ļöåð ţĥé þåĝé ýöû ŕéqûéšţéð. Måķé šûŕé ýöû åŕé ţéšţîñĝ ţĥé çöŕŕéçţ ÛŔĻ åñð ţĥåţ ţĥé šéŕvéŕ îš þŕöþéŕļý ŕéšþöñðîñĝ ţö åļļ ŕéqûéšţš. (Šţåţûš çöðé: ᐅ{errorCode}ᐊ) one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive]"
2662
+ },
2660
2663
  "core/lib/navigation-error.js | warningXhtml": {
2661
2664
  "message": "[Ţĥé þåĝé MÎMÉ ţýþé îš XĤŢMĻ: Ļîĝĥţĥöûšé ðöéš ñöţ éxþļîçîţļý šûþþöŕţ ţĥîš ðöçûméñţ ţýþé one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
2662
2665
  },
@@ -3108,22 +3111,22 @@
3108
3111
  "message": "[Ûšé ᐅ[ᐊᐅ`Gzip compression`ᐊᐅ](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression)ᐊ îñ ÑîţŕöÞåçķ ţö ŕéðûçé ţĥé šîžé öƒ ţĥé ƒîļéš ţĥåţ åŕé šéñţ ţö ţĥé бŕöŵšéŕ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
3109
3112
  },
3110
3113
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
3111
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ᐅ`format=\"webp\"`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#format)ᐊ. one two three four five six seven eight nine ten eleven]"
3114
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ᐅ`format=\"webp\"`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#format)ᐊ. one two three four five six seven eight nine ten eleven]"
3112
3115
  },
3113
3116
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | offscreen-images": {
3114
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ᐅ`loading=\"lazy\"`ᐊ ƒöŕ öƒƒšçŕééñ îmåĝéš. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#loading)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
3117
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ᐅ`loading=\"lazy\"`ᐊ ƒöŕ öƒƒšçŕééñ îmåĝéš. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#loading)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
3115
3118
  },
3116
3119
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | prioritize-lcp-image": {
3117
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šþéçîƒý ᐅ`preload`ᐊ ƒöŕ ĻÇÞ îmåĝé. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#preload)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3120
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šþéçîƒý ᐅ`preload`ᐊ ƒöŕ ĻÇÞ îmåĝé. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#preload)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3118
3121
  },
3119
3122
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | unsized-images": {
3120
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šþéçîƒý éxþļîçîţ ᐅ`width`ᐊ åñð ᐅ`height`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#width--height)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
3123
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šþéçîƒý éxþļîçîţ ᐅ`width`ᐊ åñð ᐅ`height`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#width-height)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
3121
3124
  },
3122
3125
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-optimized-images": {
3123
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ţĥé åþþŕöþŕîåţé ᐅ`quality`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#quality)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3126
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ţĥé åþþŕöþŕîåţé ᐅ`quality`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#quality)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3124
3127
  },
3125
3128
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-responsive-images": {
3126
- "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ţĥé åþþŕöþŕîåţé ᐅ`sizes`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxtjs.org/components/nuxt-img#sizes)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3129
+ "message": "[Ûšé ţĥé ᐅ`nuxt/image`ᐊ çömþöñéñţ åñð šéţ ţĥé åþþŕöþŕîåţé ᐅ`sizes`ᐊ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://image.nuxt.com/usage/nuxt-img#sizes)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen]"
3127
3130
  },
3128
3131
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
3129
3132
  "message": "[ᐅ[ᐊŔéþļåçé åñîmåţéð ĜÎFš ŵîţĥ vîðéöᐅ](https://web.dev/replace-gifs-with-videos/)ᐊ ƒöŕ ƒåšţéŕ ŵéб þåĝé ļöåðš åñð çöñšîðéŕ ûšîñĝ möðéŕñ ƒîļé ƒöŕmåţš šûçĥ åš ᐅ[ᐊŴéбMᐅ](https://web.dev/replace-gifs-with-videos/#create-webm-videos)ᐊ öŕ ᐅ[ᐊÅV1ᐅ](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder)ᐊ ţö îmþŕövé çömþŕéššîöñ 郃îçîéñçý бý ĝŕéåţéŕ ţĥåñ 30% ovéŕ ţĥé çûŕŕéñţ šţåţé-öƒ-ţĥé-åŕţ vîðéö çöðéç, VÞ9. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty thirtyone]"
@@ -3359,6 +3362,12 @@
3359
3362
  "report/renderer/report-utils.js | runtimeAnalysisWindow": {
3360
3363
  "message": "[Îñîţîåļ þåĝé ļöåð one two three]"
3361
3364
  },
3365
+ "report/renderer/report-utils.js | runtimeAnalysisWindowSnapshot": {
3366
+ "message": "[Þöîñţ-îñ-ţîmé šñåþšĥöţ one two three]"
3367
+ },
3368
+ "report/renderer/report-utils.js | runtimeAnalysisWindowTimespan": {
3369
+ "message": "[Ûšéŕ îñţéŕåçţîöñš ţîméšþåñ one two three]"
3370
+ },
3362
3371
  "report/renderer/report-utils.js | runtimeCustom": {
3363
3372
  "message": "[Çûšţöm ţĥŕöţţļîñĝ one two three]"
3364
3373
  },
@@ -3393,10 +3402,10 @@
3393
3402
  "message": "[Ûšéŕ åĝéñţ (ñéţŵöŕķ) one two three]"
3394
3403
  },
3395
3404
  "report/renderer/report-utils.js | runtimeSingleLoad": {
3396
- "message": "[Šîñĝļé þåĝé ļöåð one two]"
3405
+ "message": "[Šîñĝļé þåĝé šéššîöñ one two three]"
3397
3406
  },
3398
3407
  "report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
3399
- "message": "[Ţĥîš ðåţå îš ţåķéñ ƒŕöm å šîñĝļé þåĝé ļöåð, åš öþþöšéð ţö ƒîéļð ðåţå šûmmåŕîžîñĝ måñý šéššîöñš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
3408
+ "message": "[Ţĥîš ðåţå îš ţåķéñ ƒŕöm å šîñĝļé þåĝé šéššîöñ, åš öþþöšéð ţö ƒîéļð ðåţå šûmmåŕîžîñĝ måñý šéššîöñš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen]"
3400
3409
  },
3401
3410
  "report/renderer/report-utils.js | runtimeSlow4g": {
3402
3411
  "message": "[Šļöŵ 4Ĝ ţĥŕöţţļîñĝ one two three]"