Lighthouse Mobile
· 0 checks — Mobile Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Performance issues directly impact user engagement and conversion rates.
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Virtual Series with Dr. Kim Cragin aside.sidebar-ad-container > div.dfm-sidebar-top-flex-container > a > img | /wp-content/uploads/2026/04/CELL-CAIVP-Kim-Cragin-DP-Widg... | 54.6 KiB | 42.4 KiB |
Nicole Moore, a volunteer at the Denver Botanic Gardens, does spring cleanup wo… figure > a > div.image-wrapper > img.size-hp_small | www.denverpost.com/wp-content/uploads/2026/03/TDP-L-Gardens-RJS-21126.jpg?w=398 | 39.0 KiB | 34.4 KiB |
Nikola Jokic (15) of the Denver Nuggets shouts to teammates as Bones Hyland (8)… figure > a > div.image-wrapper > img.size-hp_small | /wp-content/uploads/2026/04/TDP-L-NUGGETS-TWOLVESA03_6353... | 20.3 KiB | 15.7 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| denverpost.com/ | 1.7 s |
| www.denverpost.com/ | 0.0 ms |
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| www.denverpost.com/ | 2.0 s |
Diagnostics
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/themes/assets/static/css/boldcoastal.css?m=17... | 121.5 KiB | 102.6 KiB |
| engage.denverpost.com/prod/dfm/t8y9347t.min.css?2026321 | 49.9 KiB | 49.9 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 18.9 s |
| Other | 2.0 s |
| Style & Layout | 1.4 s |
| Script Parsing & Compilation | 1.3 s |
| Garbage Collection | 403 ms |
| Rendering | 265 ms |
| Parse HTML & CSS | 227 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| engage.denverpost.com/prod/dfm/t8y9347t.min.css?2026321 | 50.3 KiB | 5.5 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Virtual Series with Dr. Kim Cragin aside.sidebar-ad-container > div.dfm-sidebar-top-flex-container > a > img | /wp-content/uploads/2026/04/CELL-CAIVP-Kim-Cragin-DP-Widg... |
nav#digisubs-push-container > div#digisubs-toggle > div#mng-icon-image > img#pushnav-icon nav#digisubs-push-container > div#digisubs-toggle > div#mng-icon-image > img#pushnav-icon |
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body.home > img#06db9294 body.home > img#06db9294 |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
article.slideshow > div.article-info > header > a.icon-slideshow article.slideshow > div.article-info > header > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow li.media-feature-secondary > article.slideshow > figure > a.icon-slideshow |
These items highlight common accessibility best practices.
Best Practices
General
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | |
| SharedStorage | c615.denverpost.com/script.js line 66, col 205 |
| Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. | engage.denverpost.com/prod/dfm/t8y9347t.min.js?2026321 line 7, col 472465 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Access to fetch at 'https://api.rlcdn.com/api/identity/envelope?pid=1323' from origin 'https://www.denverpost.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. | |
Failed to load resource: net::ERR_FAILED | |
Not signed in with the identity provider. | |
/wp-content/plugins/mng-cache-control/Src/assets/dist/mng... line 7, col 39 | TypeError: Cannot read properties of null (reading 'querySelector')
at initialize (https://www.denverpost.com/wp-content/plugins/mng-cache-control/Src/assets/dist/mng-cache-control-adminbar.js?ver=0.2.1:8:40)
at MNG_Cache_Control_AdminBar (https://www.denverpost.com/wp-content/plugins/mng-cache-control/Src/assets/dist/mng-cache-control-adminbar.js?ver=0.2.1:101:3)
at HTMLDocument.<anonymous> (https://www.denverpost.com/wp-content/plugins/mng-cache-control/Src/assets/dist/mng-cache-control-adminbar.js?ver=0.2.1:107:7) |
/combine/npm/jquery@3.3.1,npm/slick-carousel@1.8.1,npm/an... line 21, col 449 | Uncaught Error: [ng:btstrpd] http://errors.angularjs.org/1.2.32/ng/btstrpd?p0=%26lt%3Bhtml%20ng-app%3D%22widgetApp%22%26gt%3B |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
SEO
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Content Best Practices
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body.home > img#06db9294 body.home > img#06db9294 |
Format your HTML in a way that enables crawlers to better understand your app’s content.