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.
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.
| URL | Est Savings |
|---|---|
| page-stats.de/plugins/Morpheus/fonts/matomo.woff2?tat0k2 | 160 ms |
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.
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.
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
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.
| URL | Transfer Size | Duration |
|---|---|---|
| /index.php?module=Proxy&action=getCss&cb=ae8699acb984713d... | 80.8 KiB | 492 ms |
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.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| page-stats.de/plugins/Morpheus/fonts/matomo.woff2?tat0k2 | 0.0 ms | 16.7 KiB |
| page-stats.de/plugins/Morpheus/images/logo-header.png?matomo | 0.0 ms | 3.9 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
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.
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 |
|---|---|---|
| /index.php?module=Proxy&action=getCss&cb=ae8699acb984713d... | 80.3 KiB | 77.5 KiB |
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 |
|---|---|---|
| /index.php?module=Proxy&action=getCss&cb=ae8699acb984713d... | 80.8 KiB | 8.7 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.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /index.php?module=Proxy&action=getCoreJs&cb=ac28406fec4f5... | 431.8 KiB | 340.6 KiB |
| /index.php?module=Proxy&action=getUmdJs&chunk=2&cb=ac2840... | 105.1 KiB | 84.8 KiB |
| /index.php?module=Proxy&action=getUmdJs&chunk=1&cb=ac2840... | 79.0 KiB | 62.2 KiB |
| /index.php?module=Proxy&action=getUmdJs&chunk=0&cb=ac2840... | 51.1 KiB | 40.8 KiB |
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 | |
|---|---|
Powered by Matomo div.nav-wrapper > span#logo > a > img | page-stats.de/plugins/Morpheus/images/logo-header.png?matomo |
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.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Username or e-mail form#login_form > div.row > div.col > label.active |
Password form#login_form > div.row > div.col > label.active |
Remember Me div.row > div.col > label > span |
Lost your password? form#login_form > div.row > div.col > a#login_form_nav |
Real Time Analytics div.card-content > p#piwik > i > a |
These are opportunities to improve the legibility of your content.
Internationalization and localization
If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. Learn more about the `lang` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html#ng-app html#ng-app |
These are opportunities to improve the interpretation of your content by users in different locales.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Powered by Matomo nav > div.nav-wrapper > span#logo > a |
form#login_form > div.row > div.col > input#login_form_login form#login_form > div.row > div.col > input#login_form_login |
form#login_form > div.row > div.col > input#login_form_password form#login_form > div.row > div.col > input#login_form_password |
div.row > div.col > label > input#login_form_rememberme div.row > div.col > label > input#login_form_rememberme |
Lost your password? form#login_form > div.row > div.col > a#login_form_nav |
form#login_form > div.row > div.col > input#login_form_submit form#login_form > div.row > div.col > input#login_form_submit |
These are opportunities to improve keyboard navigation in your application.
Best practices
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html#ng-app html#ng-app |
These items highlight common accessibility best practices.
Best Practices
General
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.
Crawling and Indexing
Search engines are unable to include your pages in search results if they don't have permission to crawl them. Learn more about crawler directives.
Performance issues directly impact user engagement and conversion rates.
| Blocking Directive Source |
|---|
head > meta |
To appear in search results, crawlers need access to your app.