Przeskanowano June 23, 2026
Posortowane według wpływu na wynik — każda poprawka podnosi ogólną ocenę.
Waga: 25% · 8 zaliczonych · 7 ostrzeżenia · 2 nieudanych · 1 SPA (sprawdź ręcznie)
Dlaczego to ma znaczenie: Pages over 3 MB take 12+ seconds on 3G. The average e-commerce page is 2.2 MB — you're well above that. Amazon found every 100ms of latency costs 1% of sales.
Jak to naprawić: Critical: your page is over 3 MB. 1) Convert all images to WebP/AVIF, 2) Lazy load everything below the fold, 3) Remove unused plugins, 4) Combine and minify CSS/JS, 5) Enable brotli compression.
Dowód: PSI-lab · Pewność: high
Co znaleźliśmy: 3.6 MB, 140 requests — too heavy!
Dlaczego to ma znaczenie: Pages over 3 MB take 12+ seconds on 3G. The average e-commerce page is 2.2 MB — you're well above that. Amazon found every 100ms of latency costs 1% of sales.
Dlaczego to ma znaczenie: Each CSS file blocks rendering. With 91 files, the browser must download all of them before painting anything. This can add 1-2+ seconds on mobile networks.
Jak to naprawić: Bundle your CSS files into 1-3 files maximum. Use a build tool (Webpack, Vite, Gulp) to concatenate and minify. Critical CSS should be inlined, the rest deferred.
Dowód: HTML-heuristic · Pewność: high
Co znaleźliśmy: 91 CSS files — too many!
Dlaczego to ma znaczenie: Each CSS file blocks rendering. With 91 files, the browser must download all of them before painting anything. This can add 1-2+ seconds on mobile networks.
Dlaczego to ma znaczenie: LCP is a Core Web Vital that directly impacts Google rankings. Sites failing LCP are demoted in search results. The #1 cause of slow LCP is unoptimized hero images.
Jak to naprawić: Optimize your largest element (usually hero image or product image): preload it with <link rel='preload'>, use WebP/AVIF format, set explicit width/height, and serve from CDN.
Dowód: PSI-lab · Pewność: high
Co znaleźliśmy: 3.73s (good: <2.5s) — Core Web Vital
Dlaczego to ma znaczenie: LCP is a Core Web Vital that directly impacts Google rankings. Sites failing LCP are demoted in search results. The #1 cause of slow LCP is unoptimized hero images.
Dlaczego to ma znaczenie: Unused code is downloaded and parsed but never executed — pure waste. Removing it speeds up parse time and reduces bandwidth.
Jak to naprawić: Remove unused CSS with PurgeCSS or UnCSS. Code-split JavaScript so only needed code loads per page. Audit plugins — each adds CSS/JS.
Dowód: PSI-lab · Pewność: low
Co znaleźliśmy: 180 KB unused (CSS: 45 KB, JS: 135 KB)
Dlaczego to ma znaczenie: Unused code is downloaded and parsed but never executed — pure waste. Removing it speeds up parse time and reduces bandwidth.
Uwaga: Ta kontrola wykorzystuje detekcję heurystyczną i może zwracać również fałszywe alarmy. Zalecamy ręczną weryfikację.
Dlaczego to ma znaczenie: font-display: block hides text until the font loads (FOIT) — users see a blank page. 'swap' shows text immediately with a fallback font.
Jak to naprawić: Use font-display: swap (shows fallback immediately, swaps when loaded) or font-display: optional (best for performance — may skip custom font on slow connections).
Dowód: HTML-heuristic · Pewność: high
Co znaleźliśmy: font-display: auto
Dlaczego to ma znaczenie: font-display: block hides text until the font loads (FOIT) — users see a blank page. 'swap' shows text immediately with a fallback font.
Dlaczego to ma znaczenie: Synchronous scripts block HTML parsing — the browser stops rendering until each script downloads and executes. Async/defer allows parallel downloading without blocking.
Jak to naprawić: Add 'defer' to scripts that don't need to run immediately, 'async' for independent scripts. Use type='module' for modern ES modules. Only critical inline scripts should be synchronous.
Dowód: HTML-heuristic · Pewność: high
Co znaleźliśmy: Only 40% of 52 scripts use async/defer
Dlaczego to ma znaczenie: Synchronous scripts block HTML parsing — the browser stops rendering until each script downloads and executes. Async/defer allows parallel downloading without blocking.
Dlaczego to ma znaczenie: Fonts are discovered late in the render pipeline (after CSS is parsed). Preloading tells the browser to download them immediately, reducing Flash of Invisible Text (FOIT) by 200-500ms.
Jak to naprawić: Preload your primary font: <link rel='preload' href='/fonts/main.woff2' as='font' type='font/woff2' crossorigin>. For Google Fonts: preconnect to fonts.gstatic.com.
Dowód: HTML-heuristic · Pewność: high
Co znaleźliśmy: Custom fonts detected without preload hints
Dlaczego to ma znaczenie: Fonts are discovered late in the render pipeline (after CSS is parsed). Preloading tells the browser to download them immediately, reducing Flash of Invisible Text (FOIT) by 200-500ms.
Dlaczego to ma znaczenie: Render-blocking CSS delays first paint. Inlining critical CSS eliminates the render-blocking round trip — the biggest FCP improvement for CSS-heavy sites.
Jak to naprawić: Extract critical above-the-fold CSS and inline it in <head>. Load remaining CSS asynchronously: <link rel='preload' href='styles.css' as='style' onload='this.rel="stylesheet"'>.
Dowód: PSI-lab · Pewność: high
Co znaleźliśmy: 91 CSS files without critical CSS extraction
Dlaczego to ma znaczenie: Render-blocking CSS delays first paint. Inlining critical CSS eliminates the render-blocking round trip — the biggest FCP improvement for CSS-heavy sites.
Dlaczego to ma znaczenie: Third-party connections require DNS lookup, TCP handshake, and TLS negotiation. Preconnect performs these in parallel with HTML parsing, saving 100-300ms per origin.
Jak to naprawić: Add <link rel='preconnect'> for key third-party domains: cdnjs.cloudflare.com, www.googletagmanager.com, t.contentsquare.net. Preconnect saves 100-300ms per domain by starting DNS+TCP+TLS early.
Dowód: PSI-lab · Pewność: high
Co znaleźliśmy: 4 external domains without preconnect
Dlaczego to ma znaczenie: Third-party connections require DNS lookup, TCP handshake, and TLS negotiation. Preconnect performs these in parallel with HTML parsing, saving 100-300ms per origin.
Jak to naprawić: Re-run the scan, or test directly at PageSpeed Insights. This metric needs a successful Lighthouse lab run.
Dowód: PSI-lab · Pewność: high
Twój sklep na razie nie spełnia warunków dla odznaki Zulien Score. Uzyskaj ocenę 80+!
| Kategória | Skóre | Váha | Chyby | Upozornenia | OK |
|---|---|---|---|---|---|
| Performance | 70/100 | 25% | 2 | 7 | 8 |
| SEO | 78/100 | 20% | 2 | 8 | 14 |
| Security | 65/100 | 15% | 2 | 9 | 6 |
| Mobile | 61/100 | 10% | 1 | 8 | 7 |
| AI Readiness | 63/100 | 10% | 4 | 16 | 11 |
| GDPR | 89/100 | 10% | 0 | 3 | 9 |
| Vulnerability | 55/100 | 10% | 5 | 7 | 8 |
Plnú interaktívnu verziu s klikateľnými odkazmi a možnosťou opätovného skenu nájdete tu:
https://score.zulien.sk/r/metronet.sk