Avoid slowing down the critical rendering path (avoidRenderBlocking) | The page has 1 blocking requests and 3 in body parser blocking (3 JavaScript and 1 CSS). | 70 |
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path. |
Offenders: https://static-basket-01.wbbasket.ru/vol2/site/j/app.57a8a9d32d016065db5d.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.edb2085b69cd0893320b.js https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-4-2.4612ba38.js |
Don't scale images in the browser (avoidScalingImages) | The page has 19 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them. | 0 |
Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one. |
Offenders: https://basket-01.wbbasket.ru/vol105/part10516/10516377/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol101/part10199/10199477/images/c516x688/1.webp https://basket-02.wbbasket.ru/vol279/part27936/27936886/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol67/part6713/6713932/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol20/part2077/2077638/images/c516x688/1.webp https://basket-06.wbbasket.ru/vol1023/part102342/102342317/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol115/part11527/11527049/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol23/part2324/2324907/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol37/part3796/3796614/images/c516x688/1.webp https://basket-10.wbbasket.ru/vol1503/part150300/150300892/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol29/part2961/2961946/images/c516x688/1.webp https://basket-12.wbbasket.ru/vol1858/part185846/185846793/images/c516x688/1.webp https://basket-02.wbbasket.ru/vol279/part27936/27936852/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol32/part3284/3284770/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol32/part3284/3284756/images/c516x688/1.webp https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-store.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/google-play.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-gallery.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/rustore.png |
Inline CSS for faster first render (inlineCss) | The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens. | 95 |
Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded. |
Have a fast largest contentful paint (largestContentfulPaint) | Largest contentful paint is poor 6.455 s. It is in the Google Web Vitals poor range, slower than 4.5 seconds. You can add fetchPriority="high" to the image to increase the load priority in Chrome. | 0 |
Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance. |
Offenders: https://basket-01.wbbasket.ru/vol105/part10516/10516377/images/c516x688/1.webp |
Avoid CPU Long Tasks (longTasks) | The page has 6 CPU long tasks with the total of 1.193 s. The total blocking time is 848 ms and 1 long task before first contentful paint with total time of 95 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks. | 0 |
Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler. |
Offenders: unknownselfselfselfselfself |
Avoid Frontend single point of failures (spof) | The page has 2 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head. | 90 |
Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag. |
Offenders: https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...dfac941654fe6.css https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css |
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 75 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 1.3 MB the next access. | 0 |
Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request. |
Offenders: https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...dfac941654fe6.css https://static-basket-01.wbbasket.ru/vol2/site/j/app.57a8a9d32d016065db5d.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.edb2085b69cd0893320b.js https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-4-2.4612ba38.js https://static-basket-01.wbbasket.ru/vol0/l/als-hauss-vf.woff2 https://static-basket-01.wbbasket.ru/vol2/site/t/jst/cookies.04c0780e.json https://static-basket-01.wbbasket.ru/vol1/global-payment/default-payment.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/orderService.1de4ce8904f0cfb4b443.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/wbxOrderService.a4...75f165b8d81932.js https://static-basket-01.wbbasket.ru/vol0/data/cargo-delivery-stores-v2.json https://static-basket-01.wbbasket.ru/vol0/data/stores-data.json https://static-basket-01.wbbasket.ru/vol0/data/settings-front.json.hash https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json.hash https://static-basket-01.wbbasket.ru/vol0/data/settings-front.json https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json https://www.wildberries.ru/manifestv2.json https://static-basket-01.wbbasket.ru/vol2/site/t/jst/menuLk.f345e8d9.json https://static-basket-01.wbbasket.ru/vol2/site/t/jst/footer.7db0dfb1.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/searchInput/suggest...9c84c5b67e60f0.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/spacatalog.0ff53523.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog/xCatalogDat...ad8cd5218260f3.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog/queryHelper...960bdee40f81ba.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog_v2/provider...42f1b52ab5c1d9.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog/sorterModel...2c538540af5bd6.js https://static-basket-01.wbbasket.ru/vol0/data/main-menu-ru-ru-v3.json https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/catalo...b33d96be60ad0.css https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/promot...b91f96ffe3da8.css https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/promot...37b4f7cb90127.css https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.recentItems....a12d1cd25122c2.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.tooltip.fec060cd0acf69dad6b1.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/models/categoryCatalog.8c4f235829684a141196.js https://www.wildberries.ru/icon.svg https://user-geo-data.wildberries.ru/get-geo-info...s.ru/get-geo-info https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/banners.680bcaf2896488802062.js https://www.wildberries.ru/favicon.ico https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1257786 https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-store.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/google-play.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-gallery.png https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/rustore.png https://static-basket-01.wbbasket.ru/vol2/site/j/swiper.71a66c124b97fcb6f3b4.js https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners https://www.wildberries.ru/android-icon-144x144.png https://static-basket-01.wbbasket.ru/vol2/site/t/jst/menuTopTmpl.dac4c2eb.json https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1255987 https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/parseToken/parseTo...2b5346cf07bc0e.js https://pow.wildberries.ru/api/v1/js-settings https://catalog.wb.ru/catalog/jewellery1/v2/catalog...llery1/v2/catalog https://catalog.wb.ru/catalog/jewellery1/v2/catalog...llery1/v2/catalog https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/feedbacks/feedback...d8483db8a16cc8.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/catalogCard.3ce1eda2.json https://static-basket-01.wbbasket.ru/vol2/site/t/jst/catalogCore.5e601ea7.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.searchTags.c...ec4113398294c9.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/lazyBlockLoader....90a678955c61ae.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog_v2/goodsCat...a42e6358674f4d.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/catalogSitePath.3057d797.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog_v2/shared/c...a0149cf8815615.js https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader-component.96...4adcf8a9bfba39.js https://static-basket-01.wbbasket.ru/vol2/site/app/react-vendors.9eb77fb49b103b278192.js https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css https://static-basket-01.wbbasket.ru/vol2/site/app/react-app.19158f0c388a8109f604.js https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/lazyBlockLoader.c66511f48cf5a64f33e7.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/recommendationsList.fa2d2f1f.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/recommendations/rec...177c55c8f71a6f.js https://www.wildberries.ru/webapi/spa/catalog/metatags/yuvelirnye-ukrasheniya/ko...krasheniya/koltsa https://catalog.wb.ru/catalog/jewellery1/v8/filters...llery1/v8/filters https://static-basket-01.wbbasket.ru/vol2/site/t/jst/filterItem.edd21a2e.json https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog_v2/filtres/...df33bab8edcccb.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/mobilePopupFilter.911ad6db.json https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/mobilePop...9ca0964095fec.css https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/catalog_v2/filtres/...0d97692ee41440.js https://static-basket-01.wbbasket.ru/vol2/site/t/jst/onlineChatPopup.7cfef08b.json https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ch...8fcf03d129d63.css https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineCh...7796a70708408c.js |
Long cache headers is good (cacheHeadersLong) | The page has 19 requests that have a shorter cache time than 30 days (but still a cache time). | 81 |
Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version. |
Offenders: https://a.wb.ru/sdk/sdk.js https://pow.wildberries.ru/scripts/d.js?7eec71a7 https://pow.wildberries.ru/scripts/wasm_exec.js?5c7aa861 https://pow.wildberries.ru/scripts/solve.wasm?7b450d09 https://basket-01.wbbasket.ru/vol105/part10516/10516377/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol101/part10199/10199477/images/c516x688/1.webp https://basket-02.wbbasket.ru/vol279/part27936/27936886/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol67/part6713/6713932/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol20/part2077/2077638/images/c516x688/1.webp https://basket-06.wbbasket.ru/vol1023/part102342/102342317/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol115/part11527/11527049/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol23/part2324/2324907/images/c516x688/1.webp https://basket-10.wbbasket.ru/vol1503/part150300/150300892/images/c516x688/1.webp https://basket-12.wbbasket.ru/vol1858/part185846/185846793/images/c516x688/1.webp https://basket-02.wbbasket.ru/vol279/part27936/27936852/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol37/part3796/3796614/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol29/part2961/2961946/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol32/part3284/3284770/images/c516x688/1.webp https://basket-01.wbbasket.ru/vol32/part3284/3284756/images/c516x688/1.webp |
Total CSS size shouldn't be too big (cssSize) | The total CSS transfer size is 123.2 kB and uncompressed size is 821.5 kB. That is big and the CSS could most probably be smaller. | 0 |
Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore. |
Offenders: |
The favicon should be small and cacheable (favicon) | The favicon size is 16 kB bytes. That's quite big, can you make it smaller? The favicon has no cache time. | 0 |
Description: It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type. |
Offenders: https://www.wildberries.ru/favicon.ico |
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 511.1 kB and the uncompressed size is 1.9 MB. This is totally crazy! There is really room for improvement here. | 0 |
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks? |
Offenders: |
Avoid using incorrect mime types (mimeTypes) | The page has 11 misconfigured mime types. | 89 |
Description: It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk. |
Offenders: https://static-basket-01.wbbasket.ru/vol0/data/settings-front.json.hash https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json.hash https://static-basket-01.wbbasket.ru/vol0/data/settings-front.json https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json https://www.wildberries.ru/webapi/logging/jserror https://pow.wildberries.ru/scripts/solve.wasm?7b450d09 https://catalog.wb.ru/catalog/jewellery1/v2/catalog...llery1/v2/catalog https://catalog.wb.ru/catalog/jewellery1/v2/catalog...llery1/v2/catalog https://points.wb.ru/points-users-api/api/v1/w/promotion/available https://catalog.wb.ru/catalog/jewellery1/v8/filters...llery1/v8/filters https://www.wildberries.ru/webapi/stats/events |
Make each CSS response small (optimalCssSize) | https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3.2398a69dfac941654fe6.css size is 78.3 kB (78283) and that is bigger than the limit of 14.5 kB. https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/catalog-page-v3.73b386eb33d96be60ad0.css size is 22.9 kB (22897) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB. | 80 |
Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier. |
Offenders: |
Don't use private headers on static content (privateAssets) | The page has 6 requests with private headers. The main page has a private header. It could be right in some cases where the user can be logged in and served specific content. But if your asset is static it should never be private. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone. | 50 |
Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private. |
Offenders: https://www.wildberries.ru/catalog/yuvelirnye-ukrasheniya/koltsa?sort=popular&page=1&fbrand=4603 https://www.wildberries.ru/manifestv2.json https://www.wildberries.ru/icon.svg https://www.wildberries.ru/android-icon-144x144.png https://pow.wildberries.ru/api/v1/js-settings https://www.wildberries.ru/webapi/spa/catalog/metatags/yuvelirnye-ukrasheniya/ko...krasheniya/koltsa |