Run 2 summary

https://gitlab.com/

Tested 2025-07-28 07:39:31 using Chrome 138.0.7204.49 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayThird partyScreenshots

Summary

MetricValue
Page metrics
Performance score56
Total page size3.1 MB
Requests244
Timing metrics
TTFB284 ms
First Paint1.208 s
Fully Loaded4.467 s
Google Web Vitals
TTFB284 ms
First Contentful Paint (FCP) 1.208 s
Largest Contentful Paint (LCP) 1.700 s
Cumulative Layout Shift (CLS) 0.03
568 ms
Total Blocking Time370 ms
Max Potential FID156 ms
CPU metrics
CPU long tasks16
CPU last long task happens at3.445 s
Visual Metrics
First Visual Change1.202 s
Speed Index1.871 s
Visual Complete 85%4.004 s
Visual Complete 99%5.106 s
Last Visual Change5.106 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.6 sCPU Long Task duration 157 ms
0.8 sCPU Long Task duration 188 ms
1 sLayout Shift 0.02602 970 ms
1.3 sCPU Long Task duration 54 msFirst Visual Change 1.202 sFirst Contentful Paint 1.208 sLayout Shift 0.00027 1.249 s
1.4 sCPU Long Task duration 66 ms
1.5 smutiny-hider-removed 1.423 sCPU Long Task duration 52 msDOM Content Loaded Time 1.478 s
1.7 sCPU Long Task duration 70 msLCP <DIV> 1.700 s
1.8 sLayout Shift 0.00820 1.751 sPage Load Time 1.758 sCPU Long Task duration 70 ms
1.9 s
2 s
2.1 sCPU Long Task duration 80 ms
2.2 sCPU Long Task duration 81 ms
2.3 s
2.4 sCPU Long Task duration 67 ms
2.5 s
2.7 s
2.8 s
2.9 sCPU Long Task duration 156 ms
3 s
3.1 sCPU Long Task duration 53 ms
3.2 sCPU Long Task duration 92 ms
3.3 sCPU Long Task duration 51 ms
3.4 sCPU Long Task duration 120 ms
3.5 sCPU Long Task duration 62 ms
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 sVisual Complete 85% 4.004 s
4.2 s
4.3 s
4.4 s
4.5 sFully Loaded 4.467 s
4.6 s
4.7 s
4.8 s
4.9 s
5 sVisual Complete 95% 4.905 s
5.1 s
5.2 sLast Visual Change 5.106 sVisual Complete 99% 5.106 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.

I am the coach

Coach score

Performance advice (56)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 20 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://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png
  • https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/cube-logo.png
  • https://about.gitlab.com/images/customer_logos/intuitive-machines.png
  • https://about.gitlab.com/images/customer_logos/ally-bank-black.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-black.svg
  • https://about.gitlab.com/images/customer_logos/agoda-black.svg
  • https://about.gitlab.com/images/customer_logos/sigma-defense-black-logo.png
  • https://about.gitlab.com/images/customer_logos/carfax.png
  • https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png
  • https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/cube-logo.png
  • https://about.gitlab.com/images/customer_logos/intuitive-machines.png
  • https://about.gitlab.com/images/customer_logos/ally-bank-black.svg
  • Avoid using Google Tag Manager. (googleTagManager)The page is using Google Tag Manager, this is a performance risk since non-tech users can add JavaScript to your page.0
    Description: Google Tag Manager makes it possible for non tech users to add scripts to your page that will downgrade performance.
    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.
    Avoid CPU Long Tasks (longTasks)The page has 16 CPU long tasks with the total of 1.419 s. The total blocking time is 370 ms and 3 long tasks before first contentful paint with total time of 399 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:
  • unknown
  • unknown
  • unknown
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • Avoid Frontend single point of failures (spof)The page has 4 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.70
    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://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c...b339825302241.css
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js
  • https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 16 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 42.6 kB 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://gitlab.com/
  • https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed
  • https://client-registry.mutinycdn.com/personalize/user_data/c18972324098ea25.jso...72324098ea25.json
  • https://client-registry.mutinycdn.com/personalize/client_data/c18972324098ea25.json
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location
  • https://munchkin.marketo.net/munchkin.js
  • https://cdn.bizible.com/ipv...n.bizible.com/ipv
  • https://cdn.bizibly.com/u...cdn.bizibly.com/u
  • https://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c
  • https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0
  • https://cc.swiftype.com/cc.js?engine_key=6meAsJr1HTFB8FoyaYAv&url=https%3A%2F%2Fabout.gitlab.com%2F
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • https://jukebox.pathfactory.com/api/public/v1/init...pi/public/v1/init
  • Long cache headers is good (cacheHeadersLong)The page has 210 requests that have a shorter cache time than 30 days (but still a cache time).0
    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://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js
  • https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
  • https://about.gitlab.com/_nuxt-new/useAOS.DvB2Xm2x.css
  • https://about.gitlab.com/_nuxt-new/SearchContent.CnkxEp3_.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.t0DfGMcs.css
  • https://about.gitlab.com/_payload.json?b282a0c3-c7e4-462a-9dc1-8b740e3dbde6
  • https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js
  • https://about.gitlab.com/_nuxt-new/_...slug_.B5a4qaHk.js
  • https://about.gitlab.com/_nuxt-new/useAOS.Brhpkrhd.js
  • https://about.gitlab.com/_nuxt-new/useAvailableLanguages.CHsxCOFN.js
  • https://about.gitlab.com/_nuxt-new/query.D19_ETMb.js
  • https://about.gitlab.com/_nuxt-new/preview.CCVARo4B.js
  • https://about.gitlab.com/_nuxt-new/default.DsSCwhL7.js
  • https://about.gitlab.com/_nuxt-new/Navigation.BwGUnNz_.js
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.DPH2VjE7.js
  • https://about.gitlab.com/_nuxt-new/Search.DzJCdaSG.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.vue.BACYLBCy.js
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.BhJmgtug.js
  • https://about.gitlab.com/_nuxt-new/index.D0PS3Ti9.js
  • https://about.gitlab.com/_nuxt-new/search.service.D0T_jgLw.js
  • https://about.gitlab.com/_nuxt-new/debounce.Dj7bt6uA.js
  • https://about.gitlab.com/_nuxt-new/isObject.DB8w6JNV.js
  • https://about.gitlab.com/_nuxt-new/toNumber.BeOo-LBo.js
  • https://about.gitlab.com/_nuxt-new/isSymbol.Ba1BCOlk.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.IlDWkSqx.js
  • https://about.gitlab.com/_nuxt-new/NavigationCard.jHhpyXBn.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.DGNkkEUd.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DT2LXFv0.js
  • https://about.gitlab.com/_nuxt-new/chevron.DsT1Ref9.js
  • https://about.gitlab.com/_nuxt-new/NavigationButton.Cn58ndyt.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.CgJvEbbB.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.CoQqu4WM.js
  • https://about.gitlab.com/_nuxt-new/hamburger.u7GpIpnu.js
  • https://about.gitlab.com/_nuxt-new/Banner.DlHFCIYQ.js
  • https://about.gitlab.com/_nuxt-new/Footer.DyItQNXU.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.vue.DF14OInR.js
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.u91WiMTe.js
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.xrdFi46F.js
  • https://about.gitlab.com/_nuxt-new/Source.G0pIEL7q.js
  • https://about.gitlab.com/_nuxt-new/NuxtImg.vue.DPynf7ee.js
  • https://about.gitlab.com/_nuxt-new/gitlab.Bq4fZg9Z.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.6qXqSbze.js
  • https://about.gitlab.com/_nuxt-new/Common.DnupAyCI.js
  • https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.DiSRpOC2.js
  • https://about.gitlab.com/_nuxt-new/Hero.BQfe6XKR.js
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.hqWnAGsq.js
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.y8Cw4E0m.js
  • https://about.gitlab.com/_nuxt-new/Video.TT5dzvjQ.js
  • https://about.gitlab.com/_nuxt-new/VideoModal.SSWGe1KZ.js
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee._nKCPs7-.js
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.C-v7RPFX.js
  • https://about.gitlab.com/_nuxt-new/StackingCards.CWPTVCIa.js
  • https://about.gitlab.com/_nuxt-new/toKebabCase.r_RV3gou.js
  • https://about.gitlab.com/_nuxt-new/CardCarousel.D_NW_Kgo.js
  • https://about.gitlab.com/_nuxt-new/ForresterReport.DaDiOK0m.js
  • https://about.gitlab.com/_nuxt-new/NextSteps.RenrWCqc.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/7f944245-...dd955adfdd08.json
  • https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL
  • https://about.gitlab.com/_nuxt-new/builds/meta/b282a0c3-c7e4-462a-9dc1-8b740e3dbde6.json
  • https://cdn.bizible.com/scripts/bizible.js
  • https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js
  • https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js
  • https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js
  • https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js
  • https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js
  • https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js
  • https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js
  • https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js
  • https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js
  • https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js
  • https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js
  • https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js
  • https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js
  • https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js
  • https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js
  • https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js
  • https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js
  • https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js
  • https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js
  • https://about.gitlab.com/images/banner/agent-platform-graphic-leftside.svg
  • https://about.gitlab.com/images/banner/agent-platform-graphic-rightside.svg
  • https://about.gitlab.com/images/homepage/background-star.svg
  • https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js
  • https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js
  • https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js
  • https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js
  • https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js
  • https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js
  • https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js
  • https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js
  • https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js
  • https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js
  • https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js
  • https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js
  • https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js
  • https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js
  • https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js
  • https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js
  • https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js
  • https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js
  • https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js
  • https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js
  • https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js
  • https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js
  • https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js
  • https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js
  • https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js
  • https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js
  • https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js
  • https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js
  • https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js
  • https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js
  • https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js
  • https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js
  • https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js
  • https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js
  • https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js
  • https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js
  • https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js
  • https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js
  • https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js
  • https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js
  • https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js
  • https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js
  • https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js
  • https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js
  • https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js
  • https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js
  • https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js
  • https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js
  • https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js
  • https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js
  • https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js
  • https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js
  • https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js
  • https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js
  • https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js
  • https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js
  • https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js
  • https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js
  • https://about.gitlab.com/images/navigation/the-source-promo-card.svg
  • https://about.gitlab.com/_nuxt-new/GitLabSans.Cxxgg34v.woff2
  • https://about.gitlab.com/images/gitlab-duo/gartner-white.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/goldman-sachs-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-grey.svg
  • https://about.gitlab.com/images/customer_logos/carfax-grey.svg
  • https://about.gitlab.com/images/customer_logos/nvidia-grey-logo.svg
  • https://about.gitlab.com/images/customer_logos/ubs-logo-grey.svg
  • https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png
  • https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/cube-logo.png
  • https://about.gitlab.com/images/customer_logos/caci-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/intuitive-machines.png
  • https://about.gitlab.com/images/customer_logos/ally-bank-black.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-black.svg
  • https://about.gitlab.com/images/customer_logos/agoda-black.svg
  • https://about.gitlab.com/images/customer_logos/sigma-defense-black-logo.png
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-black.svg
  • https://about.gitlab.com/images/customer_logos/carfax.png
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js
  • https://cdn.bizible.com/xdc.js...izible.com/xdc.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/0197d06c-...65664ba02/en.json
  • https://about.gitlab.com/_nuxt-new/index.Cbn8qxQA.js
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otFlat.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/v2/otPcTab.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otCommonStyles.css
  • https://cdn.cookielaw.org/logos/static/ot_guard_logo.svg
  • https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f...tlab-logo-100.png
  • https://cdn.cookielaw.org/logos/static/powered_by_logo.svg
  • https://about.gitlab.com/images/ico/favicon.ico
  • https://s.swiftypecdn.com/install/v2/st.js
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.Cz0D3PXW.css
  • https://about.gitlab.com/_nuxt-new/Search.DhfWzWmZ.css
  • https://about.gitlab.com/_nuxt-new/NavigationCard.BJ098Xic.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.RdeokJTR.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DBOLvPX2.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.DDYrcOce.css
  • https://about.gitlab.com/_nuxt-new/NavigationButton.C4ETLmZg.css
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.CmP-Ip6l.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.uR5FisaS.css
  • https://about.gitlab.com/_nuxt-new/Navigation.3rUWLhwF.css
  • https://about.gitlab.com/_nuxt-new/Banner.1PTndvqo.css
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.CPPa0FOA.css
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.DRkGxDDO.css
  • https://about.gitlab.com/_nuxt-new/Source.BrZQDSxX.css
  • https://about.gitlab.com/_nuxt-new/Footer.DRsZLK8-.css
  • https://about.gitlab.com/_nuxt-new/default.CupAYY5Y.css
  • https://s.swiftypecdn.com/install/v2/config/Z4n7msKyctXXfJs66EKx.json
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.BdgHv1IK.css
  • https://about.gitlab.com/_nuxt-new/Video.CcB3AYCZ.css
  • https://about.gitlab.com/_nuxt-new/VideoModal.CqnX6U8I.css
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.CN-M_ToF.css
  • https://about.gitlab.com/_nuxt-new/Hero.qxCogqWP.css
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee.Df88lSnL.css
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.XCeUDwwl.css
  • https://about.gitlab.com/_nuxt-new/StackingCards.BTFpzXHH.css
  • https://about.gitlab.com/_nuxt-new/CardCarousel.GVsScTww.css
  • https://about.gitlab.com/_nuxt-new/ForresterReport.xbiuVxAJ.css
  • https://about.gitlab.com/_nuxt-new/NextSteps.DvODd2PQ.css
  • https://about.gitlab.com/api/_content/query/Pcvj2T2VgF.1753479250365.json...753479250365.json
  • https://about.gitlab.com/_nuxt-new/aos.DBVFWejY.js
  • https://www.googletagmanager.com/gtag/destination.../gtag/destination
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js
  • Always compress text content (compressAssets)The page has 5 requests that are served uncompressed. You could save a lot of bytes by sending them compressed instead.50
    Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
    Offenders:
    URLTransfer sizeContent size
    https://about.gitlab.com/ 47.2 KB308.0 KB
    https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL 142.0 KB510.7 KB
    https://www.googletagmanager.com/gtag/destination.../gtag/destination 142.4 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 142.1 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 120.1 KB336.5 KB
    Avoid redirecting the main document (documentRedirect)The main document gets redirected 1 time(s). Remove those redirect and make the page faster!0
    Description: You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :)
    Offenders:
  • https://gitlab.com/
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 2.1 MB and the uncompressed size is 6 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:
    URLTransfer sizeContent size
    https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js 20.9 KB59.9 KB
    https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js 5.2 KB24.7 KB
    https://cdn.cookielaw.org/scripttemplates/otSDKStub.js 8.9 KB25.3 KB
    https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed 262 B84 B
    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js 196.4 KB525.3 KB
    https://about.gitlab.com/_nuxt-new/_...slug_.B5a4qaHk.js 3.5 KB8.0 KB
    https://about.gitlab.com/_nuxt-new/useAOS.Brhpkrhd.js 2.4 KB4.6 KB
    https://about.gitlab.com/_nuxt-new/useAvailableLanguages.CHsxCOFN.js 44.9 KB224.5 KB
    https://about.gitlab.com/_nuxt-new/query.D19_ETMb.js 8.0 KB18.9 KB
    https://about.gitlab.com/_nuxt-new/preview.CCVARo4B.js 534 B537 B
    https://about.gitlab.com/_nuxt-new/default.DsSCwhL7.js 1.2 KB2.1 KB
    https://about.gitlab.com/_nuxt-new/Navigation.BwGUnNz_.js 1.1 KB1.7 KB
    https://about.gitlab.com/_nuxt-new/NavigationDesktop.DPH2VjE7.js 1.6 KB3.1 KB
    https://about.gitlab.com/_nuxt-new/Search.DzJCdaSG.js 989 B1.3 KB
    https://about.gitlab.com/_nuxt-new/SearchContent.vue.BACYLBCy.js 1.4 KB2.2 KB
    https://about.gitlab.com/_nuxt-new/SearchSuggestions.BhJmgtug.js 1.6 KB2.7 KB
    https://about.gitlab.com/_nuxt-new/index.D0PS3Ti9.js 91.5 KB323.3 KB
    https://about.gitlab.com/_nuxt-new/search.service.D0T_jgLw.js 1.0 KB1.4 KB
    https://about.gitlab.com/_nuxt-new/debounce.Dj7bt6uA.js 907 B1.0 KB
    https://about.gitlab.com/_nuxt-new/isObject.DB8w6JNV.js 629 B749 B
    https://about.gitlab.com/_nuxt-new/toNumber.BeOo-LBo.js 592 B578 B
    https://about.gitlab.com/_nuxt-new/isSymbol.Ba1BCOlk.js 374 B145 B
    https://about.gitlab.com/_nuxt-new/NavigationDropdown.IlDWkSqx.js 1.4 KB2.6 KB
    https://about.gitlab.com/_nuxt-new/NavigationCard.jHhpyXBn.js 1.3 KB2.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.DGNkkEUd.js 852 B1.1 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DT2LXFv0.js 1.4 KB3.4 KB
    https://about.gitlab.com/_nuxt-new/chevron.DsT1Ref9.js 849 B1.7 KB
    https://about.gitlab.com/_nuxt-new/NavigationButton.Cn58ndyt.js 968 B1.0 KB
    https://about.gitlab.com/_nuxt-new/NavigationMobile.CgJvEbbB.js 1.6 KB4.4 KB
    https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.CoQqu4WM.js 2.4 KB6.3 KB
    https://about.gitlab.com/_nuxt-new/hamburger.u7GpIpnu.js 663 B562 B
    https://about.gitlab.com/_nuxt-new/Banner.DlHFCIYQ.js 1.9 KB3.2 KB
    https://about.gitlab.com/_nuxt-new/Footer.DyItQNXU.js 1.5 KB3.0 KB
    https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.vue.DF14OInR.js 674 B717 B
    https://about.gitlab.com/_nuxt-new/LanguageSelector.u91WiMTe.js 1.3 KB2.2 KB
    https://about.gitlab.com/_nuxt-new/SocialMediaLinks.xrdFi46F.js 815 B1.6 KB
    https://about.gitlab.com/_nuxt-new/Source.G0pIEL7q.js 1.2 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/NuxtImg.vue.DPynf7ee.js 4.7 KB10.5 KB
    https://about.gitlab.com/_nuxt-new/gitlab.Bq4fZg9Z.js 2.2 KB4.4 KB
    https://about.gitlab.com/_nuxt-new/SearchContent.6qXqSbze.js 550 B331 B
    https://about.gitlab.com/_nuxt-new/Common.DnupAyCI.js 738 B609 B
    https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js 17.8 KB71.6 KB
    https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.DiSRpOC2.js 351 B109 B
    https://about.gitlab.com/_nuxt-new/Hero.BQfe6XKR.js 1.4 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/EmailRedirect.hqWnAGsq.js 1.2 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/LoopingVideo.y8Cw4E0m.js 1.1 KB1.8 KB
    https://about.gitlab.com/_nuxt-new/Video.TT5dzvjQ.js 6.6 KB15.2 KB
    https://about.gitlab.com/_nuxt-new/VideoModal.SSWGe1KZ.js 1.2 KB1.7 KB
    https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee._nKCPs7-.js 897 B1.7 KB
    https://about.gitlab.com/_nuxt-new/SecondaryHero.C-v7RPFX.js 832 B1.1 KB
    https://about.gitlab.com/_nuxt-new/StackingCards.CWPTVCIa.js 1.7 KB2.7 KB
    https://about.gitlab.com/_nuxt-new/toKebabCase.r_RV3gou.js 318 B127 B
    https://about.gitlab.com/_nuxt-new/CardCarousel.D_NW_Kgo.js 1.6 KB2.9 KB
    https://about.gitlab.com/_nuxt-new/ForresterReport.DaDiOK0m.js 850 B1.2 KB
    https://about.gitlab.com/_nuxt-new/NextSteps.RenrWCqc.js 1.6 KB3.1 KB
    https://client-registry.mutinycdn.com/personalize/client_data/c18972324098ea25.json 16.3 KB91.7 KB
    https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL 142.0 KB510.7 KB
    https://cdn.bizible.com/scripts/bizible.js 24.8 KB67.0 KB
    https://munchkin.marketo.net/munchkin.js 729 B1.2 KB
    https://client-registry.mutinycdn.com/mutiny-client/765.5.6.3.js 21.3 KB67.7 KB
    https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js 885 B0 b
    https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js 1016 B0 b
    https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js 856 B0 b
    https://client-registry.mutinycdn.com/mutiny-client/223.5.6.3.js 32.3 KB116.9 KB
    https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js 969 B0 b
    https://client-registry.mutinycdn.com/mutiny-client/191.5.6.3.js 5.1 KB13.8 KB
    https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js 944 B0 b
    https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js 429 B0 b
    https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js 953 B0 b
    https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js 3.0 KB0 b
    https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js 367 B0 b
    https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js 1.9 KB0 b
    https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js 2.4 KB0 b
    https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js 3.5 KB0 b
    https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js 1002 B0 b
    https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js 769 B0 b
    https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js 774 B0 b
    https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js 2.0 KB0 b
    https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js 992 B0 b
    https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js 808 B0 b
    https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js 634 B0 b
    https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js 947 B0 b
    https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js 1.0 KB0 b
    https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js 725 B0 b
    https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js 940 B0 b
    https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js 796 B0 b
    https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js 946 B0 b
    https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js 297.8 KB0 b
    https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js 867 B0 b
    https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js 4.1 KB0 b
    https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js 519 B0 b
    https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js 494 B0 b
    https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js 764 B0 b
    https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js 2.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js 2.0 KB0 b
    https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js 314 B0 b
    https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js 621 B0 b
    https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js 2.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js 2.2 KB0 b
    https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js 870 B0 b
    https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js 731 B0 b
    https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js 576 B0 b
    https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js 720 B0 b
    https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js 2.5 KB0 b
    https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js 1.9 KB0 b
    https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js 677 B0 b
    https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js 973 B0 b
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js 119.9 KB496.5 KB
    https://client-registry.mutinycdn.com/mutiny-client/237.5.6.3.js 2.7 KB6.9 KB
    https://client-registry.mutinycdn.com/mutiny-client/160.5.6.3.js 2.9 KB8.2 KB
    https://cdn.bizible.com/xdc.js...izible.com/xdc.js 239 B116 B
    https://about.gitlab.com/_nuxt-new/index.Cbn8qxQA.js 3.6 KB12.3 KB
    https://client-registry.mutinycdn.com/mutiny-client/288.5.6.3.js 11.0 KB36.1 KB
    https://s.swiftypecdn.com/install/v2/st.js 111.8 KB422.8 KB
    https://about.gitlab.com/_nuxt-new/aos.DBVFWejY.js 5.4 KB14.5 KB
    https://www.googletagmanager.com/gtag/destination.../gtag/destination 142.4 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 142.1 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 120.1 KB336.5 KB
    https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js 320.0 KB1.4 MB
    Avoid using incorrect mime types (mimeTypes)The page has 5 misconfigured mime types. 95
    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://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c
  • https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0
  • https://events.launchdarkly.com/events/diagnostic/620c2f247f24eb0c056e3a8c
  • https://jukebox.pathfactory.com/api/public/v1/init...pi/public/v1/init
  • https://events.launchdarkly.com/events/bulk/620c2f247f24eb0c056e3a8c
  • Make each CSS response small (optimalCssSize)https://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c72de809fc7c76fb339825302241.css size is 34.1 kB (34139) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.90
    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:
    URLTransfer sizeContent size
    https://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c...b339825302241.css 33.3 KB89.5 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 3.2 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://gitlab.com/ N/A0 b
    https://about.gitlab.com/ 47.2 KB308.0 KB
    https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js 20.9 KB59.9 KB
    https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js 5.2 KB24.7 KB
    https://cdn.cookielaw.org/scripttemplates/otSDKStub.js 8.9 KB25.3 KB
    https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed 262 B84 B
    https://about.gitlab.com/_nuxt-new/useAOS.DvB2Xm2x.css 1.9 KB25.4 KB
    https://about.gitlab.com/_nuxt-new/SearchContent.CnkxEp3_.css 530 B868 B
    https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.t0DfGMcs.css 934 B3.0 KB
    https://about.gitlab.com/_payload.json?b282a0c3-c7e4-462a-9dc1-8b740e3dbde6 9.3 KB29.9 KB
    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js 196.4 KB525.3 KB
    https://about.gitlab.com/_nuxt-new/_...slug_.B5a4qaHk.js 3.5 KB8.0 KB
    https://about.gitlab.com/_nuxt-new/useAOS.Brhpkrhd.js 2.4 KB4.6 KB
    https://about.gitlab.com/_nuxt-new/useAvailableLanguages.CHsxCOFN.js 44.9 KB224.5 KB
    https://about.gitlab.com/_nuxt-new/query.D19_ETMb.js 8.0 KB18.9 KB
    https://about.gitlab.com/_nuxt-new/preview.CCVARo4B.js 534 B537 B
    https://about.gitlab.com/_nuxt-new/default.DsSCwhL7.js 1.2 KB2.1 KB
    https://about.gitlab.com/_nuxt-new/Navigation.BwGUnNz_.js 1.1 KB1.7 KB
    https://about.gitlab.com/_nuxt-new/NavigationDesktop.DPH2VjE7.js 1.6 KB3.1 KB
    https://about.gitlab.com/_nuxt-new/Search.DzJCdaSG.js 989 B1.3 KB
    https://about.gitlab.com/_nuxt-new/SearchContent.vue.BACYLBCy.js 1.4 KB2.2 KB
    https://about.gitlab.com/_nuxt-new/SearchSuggestions.BhJmgtug.js 1.6 KB2.7 KB
    https://about.gitlab.com/_nuxt-new/index.D0PS3Ti9.js 91.5 KB323.3 KB
    https://about.gitlab.com/_nuxt-new/search.service.D0T_jgLw.js 1.0 KB1.4 KB
    https://about.gitlab.com/_nuxt-new/debounce.Dj7bt6uA.js 907 B1.0 KB
    https://about.gitlab.com/_nuxt-new/isObject.DB8w6JNV.js 629 B749 B
    https://about.gitlab.com/_nuxt-new/toNumber.BeOo-LBo.js 592 B578 B
    https://about.gitlab.com/_nuxt-new/isSymbol.Ba1BCOlk.js 374 B145 B
    https://about.gitlab.com/_nuxt-new/NavigationDropdown.IlDWkSqx.js 1.4 KB2.6 KB
    https://about.gitlab.com/_nuxt-new/NavigationCard.jHhpyXBn.js 1.3 KB2.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.DGNkkEUd.js 852 B1.1 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DT2LXFv0.js 1.4 KB3.4 KB
    https://about.gitlab.com/_nuxt-new/chevron.DsT1Ref9.js 849 B1.7 KB
    https://about.gitlab.com/_nuxt-new/NavigationButton.Cn58ndyt.js 968 B1.0 KB
    https://about.gitlab.com/_nuxt-new/NavigationMobile.CgJvEbbB.js 1.6 KB4.4 KB
    https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.CoQqu4WM.js 2.4 KB6.3 KB
    https://about.gitlab.com/_nuxt-new/hamburger.u7GpIpnu.js 663 B562 B
    https://about.gitlab.com/_nuxt-new/Banner.DlHFCIYQ.js 1.9 KB3.2 KB
    https://about.gitlab.com/_nuxt-new/Footer.DyItQNXU.js 1.5 KB3.0 KB
    https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.vue.DF14OInR.js 674 B717 B
    https://about.gitlab.com/_nuxt-new/LanguageSelector.u91WiMTe.js 1.3 KB2.2 KB
    https://about.gitlab.com/_nuxt-new/SocialMediaLinks.xrdFi46F.js 815 B1.6 KB
    https://about.gitlab.com/_nuxt-new/Source.G0pIEL7q.js 1.2 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/NuxtImg.vue.DPynf7ee.js 4.7 KB10.5 KB
    https://about.gitlab.com/_nuxt-new/gitlab.Bq4fZg9Z.js 2.2 KB4.4 KB
    https://about.gitlab.com/_nuxt-new/SearchContent.6qXqSbze.js 550 B331 B
    https://about.gitlab.com/_nuxt-new/Common.DnupAyCI.js 738 B609 B
    https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js 17.8 KB71.6 KB
    https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.DiSRpOC2.js 351 B109 B
    https://about.gitlab.com/_nuxt-new/Hero.BQfe6XKR.js 1.4 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/EmailRedirect.hqWnAGsq.js 1.2 KB2.0 KB
    https://about.gitlab.com/_nuxt-new/LoopingVideo.y8Cw4E0m.js 1.1 KB1.8 KB
    https://about.gitlab.com/_nuxt-new/Video.TT5dzvjQ.js 6.6 KB15.2 KB
    https://about.gitlab.com/_nuxt-new/VideoModal.SSWGe1KZ.js 1.2 KB1.7 KB
    https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee._nKCPs7-.js 897 B1.7 KB
    https://about.gitlab.com/_nuxt-new/SecondaryHero.C-v7RPFX.js 832 B1.1 KB
    https://about.gitlab.com/_nuxt-new/StackingCards.CWPTVCIa.js 1.7 KB2.7 KB
    https://about.gitlab.com/_nuxt-new/toKebabCase.r_RV3gou.js 318 B127 B
    https://about.gitlab.com/_nuxt-new/CardCarousel.D_NW_Kgo.js 1.6 KB2.9 KB
    https://about.gitlab.com/_nuxt-new/ForresterReport.DaDiOK0m.js 850 B1.2 KB
    https://about.gitlab.com/_nuxt-new/NextSteps.RenrWCqc.js 1.6 KB3.1 KB
    https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/7f944245-...dd955adfdd08.json 2.7 KB7.5 KB
    https://client-registry.mutinycdn.com/personalize/user_data/c18972324098ea25.jso...72324098ea25.json 520 B512 B
    https://client-registry.mutinycdn.com/personalize/client_data/c18972324098ea25.json 16.3 KB91.7 KB
    https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location 314 B75 B
    https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL 142.0 KB510.7 KB
    https://about.gitlab.com/_nuxt-new/builds/meta/b282a0c3-c7e4-462a-9dc1-8b740e3dbde6.json 15.6 KB89.6 KB
    https://cdn.bizible.com/scripts/bizible.js 24.8 KB67.0 KB
    https://munchkin.marketo.net/munchkin.js 729 B1.2 KB
    https://client-registry.mutinycdn.com/mutiny-client/765.5.6.3.js 21.3 KB67.7 KB
    https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js 885 B0 b
    https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js 1016 B0 b
    https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js 856 B0 b
    https://client-registry.mutinycdn.com/mutiny-client/223.5.6.3.js 32.3 KB116.9 KB
    https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js 969 B0 b
    https://client-registry.mutinycdn.com/mutiny-client/191.5.6.3.js 5.1 KB13.8 KB
    https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js 944 B0 b
    https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js 429 B0 b
    https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js 953 B0 b
    https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js 3.0 KB0 b
    https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js 367 B0 b
    https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js 1.9 KB0 b
    https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js 2.4 KB0 b
    https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js 3.5 KB0 b
    https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js 1002 B0 b
    https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js 769 B0 b
    https://about.gitlab.com/images/banner/agent-platform-graphic-leftside.svg 990 B3.1 KB
    https://about.gitlab.com/images/banner/agent-platform-graphic-rightside.svg 1.2 KB3.2 KB
    https://about.gitlab.com/images/homepage/background-star.svg 1.8 KB4.1 KB
    https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js 774 B0 b
    https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js 2.0 KB0 b
    https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js 992 B0 b
    https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js 808 B0 b
    https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js 634 B0 b
    https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js 947 B0 b
    https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js 1.0 KB0 b
    https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js 725 B0 b
    https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js 940 B0 b
    https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js 796 B0 b
    https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js 946 B0 b
    https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js 297.8 KB0 b
    https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js 867 B0 b
    https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js 4.1 KB0 b
    https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js 519 B0 b
    https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js 494 B0 b
    https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js 764 B0 b
    https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js 1.5 KB0 b
    https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js 2.3 KB0 b
    https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js 2.0 KB0 b
    https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js 314 B0 b
    https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js 1.2 KB0 b
    https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js 621 B0 b
    https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js 2.2 KB0 b
    https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js 2.2 KB0 b
    https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js 870 B0 b
    https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js 1.1 KB0 b
    https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js 731 B0 b
    https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js 576 B0 b
    https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js 1.8 KB0 b
    https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js 1.4 KB0 b
    https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js 1.6 KB0 b
    https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js 1.3 KB0 b
    https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js 720 B0 b
    https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js 2.5 KB0 b
    https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js 1.9 KB0 b
    https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js 677 B0 b
    https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js 1.7 KB0 b
    https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js 973 B0 b
    https://about.gitlab.com/images/navigation/the-source-promo-card.svg 3.6 KB10.3 KB
    https://about.gitlab.com/_nuxt-new/GitLabSans.Cxxgg34v.woff2 317.5 KB316.9 KB
    https://res.cloudinary.com/about-gitlab-com/video/upload/f_auto/q_auto/v17507800...odl2k6phsnlhm.mp4 376.1 KB375.2 KB
    https://about.gitlab.com/images/gitlab-duo/gartner-white.svg 3.1 KB6.4 KB
    https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg 667 B624 B
    https://about.gitlab.com/images/customer_logos/goldman-sachs-grey.svg 3.3 KB7.6 KB
    https://about.gitlab.com/images/customer_logos/airbus-grey.svg 1.1 KB1.6 KB
    https://about.gitlab.com/images/customer_logos/lockheed-martin-grey.svg 2.4 KB5.0 KB
    https://about.gitlab.com/images/customer_logos/carfax-grey.svg 1.3 KB2.4 KB
    https://about.gitlab.com/images/customer_logos/nvidia-grey-logo.svg 1.7 KB3.1 KB
    https://about.gitlab.com/images/customer_logos/ubs-logo-grey.svg 6.7 KB14.2 KB
    https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png 27.6 KB27.3 KB
    https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg 2.6 KB5.6 KB
    https://about.gitlab.com/images/customer_logos/cube-logo.png 22.9 KB22.6 KB
    https://about.gitlab.com/images/customer_logos/caci-black-logo.svg 2.6 KB5.8 KB
    https://about.gitlab.com/images/customer_logos/intuitive-machines.png 51.0 KB50.6 KB
    https://about.gitlab.com/images/customer_logos/ally-bank-black.svg 620 B709 B
    https://about.gitlab.com/images/customer_logos/deutsche-telekom-black.svg 663 B624 B
    https://about.gitlab.com/images/customer_logos/agoda-black.svg 1.1 KB2.6 KB
    https://about.gitlab.com/images/customer_logos/sigma-defense-black-logo.png 37.9 KB37.6 KB
    https://about.gitlab.com/images/customer_logos/lockheed-martin-black.svg 2.4 KB5.0 KB
    https://about.gitlab.com/images/customer_logos/carfax.png 16.4 KB16.2 KB
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js 119.9 KB496.5 KB
    https://cdn.bizible.com/ipv...n.bizible.com/ipv 165 B43 B
    https://cdn.bizibly.com/u...cdn.bizibly.com/u 165 B43 B
    https://api-v2.mutinyhq.io/v2/b 430 B2 B
    https://client-registry.mutinycdn.com/mutiny-client/237.5.6.3.js 2.7 KB6.9 KB
    https://client-registry.mutinycdn.com/mutiny-client/160.5.6.3.js 2.9 KB8.2 KB
    https://cdn.bizible.com/xdc.js...izible.com/xdc.js 239 B116 B
    https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/0197d06c-...65664ba02/en.json 24.0 KB124.3 KB
    https://about.gitlab.com/_nuxt-new/index.Cbn8qxQA.js 3.6 KB12.3 KB
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otFlat.json 3.4 KB15.0 KB
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/v2/otPcTab.json 13.6 KB65.7 KB
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otCommonStyles.css 4.5 KB25.2 KB
    https://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c 0 b0 b
    https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0 0 b0 b
    https://events.launchdarkly.com/events/diagnostic/620c2f247f24eb0c056e3a8c 0 b0 b
    https://client-registry.mutinycdn.com/mutiny-client/288.5.6.3.js 11.0 KB36.1 KB
    https://cdn.cookielaw.org/logos/static/ot_guard_logo.svg 495 B497 B
    https://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c 421 B372 B
    https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0 923 B2.3 KB
    https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f...tlab-logo-100.png 8.5 KB8.2 KB
    https://cdn.cookielaw.org/logos/static/powered_by_logo.svg 2.1 KB5.1 KB
    https://events.launchdarkly.com/events/diagnostic/620c2f247f24eb0c056e3a8c 359 B0 b
    https://about.gitlab.com/images/ico/favicon.ico 3.0 KB14.7 KB
    https://s.swiftypecdn.com/install/v2/st.js 111.8 KB422.8 KB
    https://about.gitlab.com/_nuxt-new/SearchSuggestions.Cz0D3PXW.css 691 B1.5 KB
    https://about.gitlab.com/_nuxt-new/Search.DhfWzWmZ.css 620 B674 B
    https://about.gitlab.com/_nuxt-new/NavigationCard.BJ098Xic.css 1.1 KB3.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.RdeokJTR.css 545 B791 B
    https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DBOLvPX2.css 1.1 KB4.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationDropdown.DDYrcOce.css 1.4 KB5.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationButton.C4ETLmZg.css 654 B1.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationDesktop.CmP-Ip6l.css 1.2 KB3.5 KB
    https://about.gitlab.com/_nuxt-new/NavigationMobile.uR5FisaS.css 631 B1.3 KB
    https://about.gitlab.com/_nuxt-new/Navigation.3rUWLhwF.css 570 B1.0 KB
    https://about.gitlab.com/_nuxt-new/Banner.1PTndvqo.css 1.1 KB3.4 KB
    https://about.gitlab.com/_nuxt-new/LanguageSelector.CPPa0FOA.css 785 B1.4 KB
    https://about.gitlab.com/_nuxt-new/SocialMediaLinks.DRkGxDDO.css 503 B389 B
    https://about.gitlab.com/_nuxt-new/Source.BrZQDSxX.css 443 B409 B
    https://about.gitlab.com/_nuxt-new/Footer.DRsZLK8-.css 1.2 KB3.6 KB
    https://about.gitlab.com/_nuxt-new/default.CupAYY5Y.css 386 B247 B
    https://s.swiftypecdn.com/install/v2/config/Z4n7msKyctXXfJs66EKx.json 4.7 KB19.5 KB
    https://about.gitlab.com/_nuxt-new/EmailRedirect.BdgHv1IK.css 691 B1.2 KB
    https://about.gitlab.com/_nuxt-new/Video.CcB3AYCZ.css 716 B1.0 KB
    https://about.gitlab.com/_nuxt-new/VideoModal.CqnX6U8I.css 629 B981 B
    https://about.gitlab.com/_nuxt-new/LoopingVideo.CN-M_ToF.css 681 B1.3 KB
    https://about.gitlab.com/_nuxt-new/Hero.qxCogqWP.css 2.1 KB8.6 KB
    https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee.Df88lSnL.css 678 B948 B
    https://about.gitlab.com/_nuxt-new/SecondaryHero.XCeUDwwl.css 406 B308 B
    https://about.gitlab.com/_nuxt-new/StackingCards.BTFpzXHH.css 1.4 KB6.2 KB
    https://about.gitlab.com/_nuxt-new/CardCarousel.GVsScTww.css 968 B1.6 KB
    https://about.gitlab.com/_nuxt-new/ForresterReport.xbiuVxAJ.css 482 B646 B
    https://about.gitlab.com/_nuxt-new/NextSteps.DvODd2PQ.css 733 B1.4 KB
    https://about.gitlab.com/api/_content/query/Pcvj2T2VgF.1753479250365.json...753479250365.json 261 B4 B
    https://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c...b339825302241.css 33.3 KB89.5 KB
    https://about.gitlab.com/_nuxt-new/aos.DBVFWejY.js 5.4 KB14.5 KB
    https://cc.swiftype.com/cc.js?engine_key=6meAsJr1HTFB8FoyaYAv&url=https%3A%2F%2Fabout.gitlab.com%2F 43 B43 B
    https://www.googletagmanager.com/gtag/destination.../gtag/destination 142.4 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 142.1 KB421.7 KB
    https://www.googletagmanager.com/gtag/js...nager.com/gtag/js 120.1 KB336.5 KB
    https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js 320.0 KB1.4 MB
    https://jukebox.pathfactory.com/api/public/v1/init...pi/public/v1/init 0 b0 b
    https://analytics.gitlab.com/g/collect...lab.com/g/collect 294 B65 B
    https://analytics.gitlab.com/g/collect...lab.com/g/collect 128 B65 B
    https://analytics.gitlab.com/g/collect...lab.com/g/collect 128 B65 B
    https://jukebox.pathfactory.com/api/public/v1/init...pi/public/v1/init 476 B0 b
    https://events.launchdarkly.com/events/bulk/620c2f247f24eb0c056e3a8c 0 b0 b
    https://events.launchdarkly.com/events/bulk/620c2f247f24eb0c056e3a8c 359 B0 b
    https://api-v2.mutinyhq.io/v2/b 429 B2 B
    Don't use private headers on static content (privateAssets)The page has 5 requests with private headers. 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.googletagmanager.com/gtm.js?id=GTM-NJXWQL
  • https://cdn.bizible.com/xdc.js...izible.com/xdc.js
  • https://www.googletagmanager.com/gtag/destination.../gtag/destination
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • Best practice advice (84)

    TitleAdviceScore
    Do not send too long headers (longHeaders)https://gitlab.com/ has a header content-security-policy that is 1648 characters long. https://about.gitlab.com/ has a header content-security-policy that is 1648 characters long. 98
    Description: Do not send response headers that are too long.
    Offenders:
  • https://gitlab.com/
  • https://about.gitlab.com/
  • Avoid too many third party requests (thirdParty)The page do 20% requests to third party domains (49 requests and 1.8 MB). First party is 195 requests and 1.5 MB. The page transfer more bytes from third party domains (1.8 MB) then first party (1.5 MB). The regex .*gitlab.* was used to calculate first/third party requests.0
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 4 responses that sets a p3p header. There are 202 responses that sets both a max-age and expires header. There are 2 responses that sets a pragma no-cache header (that is a request header). There are 224 responses that sets a server header. 0
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://gitlab.com/
  • https://about.gitlab.com/
  • https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js
  • https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
  • https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed
  • https://about.gitlab.com/_nuxt-new/useAOS.DvB2Xm2x.css
  • https://about.gitlab.com/_nuxt-new/useAOS.DvB2Xm2x.css
  • https://about.gitlab.com/_nuxt-new/SearchContent.CnkxEp3_.css
  • https://about.gitlab.com/_nuxt-new/SearchContent.CnkxEp3_.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.t0DfGMcs.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.t0DfGMcs.css
  • https://about.gitlab.com/_payload.json?b282a0c3-c7e4-462a-9dc1-8b740e3dbde6
  • https://about.gitlab.com/_payload.json?b282a0c3-c7e4-462a-9dc1-8b740e3dbde6
  • https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js
  • https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js
  • https://about.gitlab.com/_nuxt-new/_...slug_.B5a4qaHk.js
  • https://about.gitlab.com/_nuxt-new/_...slug_.B5a4qaHk.js
  • https://about.gitlab.com/_nuxt-new/useAOS.Brhpkrhd.js
  • https://about.gitlab.com/_nuxt-new/useAOS.Brhpkrhd.js
  • https://about.gitlab.com/_nuxt-new/useAvailableLanguages.CHsxCOFN.js
  • https://about.gitlab.com/_nuxt-new/useAvailableLanguages.CHsxCOFN.js
  • https://about.gitlab.com/_nuxt-new/query.D19_ETMb.js
  • https://about.gitlab.com/_nuxt-new/query.D19_ETMb.js
  • https://about.gitlab.com/_nuxt-new/preview.CCVARo4B.js
  • https://about.gitlab.com/_nuxt-new/preview.CCVARo4B.js
  • https://about.gitlab.com/_nuxt-new/default.DsSCwhL7.js
  • https://about.gitlab.com/_nuxt-new/default.DsSCwhL7.js
  • https://about.gitlab.com/_nuxt-new/Navigation.BwGUnNz_.js
  • https://about.gitlab.com/_nuxt-new/Navigation.BwGUnNz_.js
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.DPH2VjE7.js
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.DPH2VjE7.js
  • https://about.gitlab.com/_nuxt-new/Search.DzJCdaSG.js
  • https://about.gitlab.com/_nuxt-new/Search.DzJCdaSG.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.vue.BACYLBCy.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.vue.BACYLBCy.js
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.BhJmgtug.js
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.BhJmgtug.js
  • https://about.gitlab.com/_nuxt-new/index.D0PS3Ti9.js
  • https://about.gitlab.com/_nuxt-new/index.D0PS3Ti9.js
  • https://about.gitlab.com/_nuxt-new/search.service.D0T_jgLw.js
  • https://about.gitlab.com/_nuxt-new/search.service.D0T_jgLw.js
  • https://about.gitlab.com/_nuxt-new/debounce.Dj7bt6uA.js
  • https://about.gitlab.com/_nuxt-new/debounce.Dj7bt6uA.js
  • https://about.gitlab.com/_nuxt-new/isObject.DB8w6JNV.js
  • https://about.gitlab.com/_nuxt-new/isObject.DB8w6JNV.js
  • https://about.gitlab.com/_nuxt-new/toNumber.BeOo-LBo.js
  • https://about.gitlab.com/_nuxt-new/toNumber.BeOo-LBo.js
  • https://about.gitlab.com/_nuxt-new/isSymbol.Ba1BCOlk.js
  • https://about.gitlab.com/_nuxt-new/isSymbol.Ba1BCOlk.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.IlDWkSqx.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.IlDWkSqx.js
  • https://about.gitlab.com/_nuxt-new/NavigationCard.jHhpyXBn.js
  • https://about.gitlab.com/_nuxt-new/NavigationCard.jHhpyXBn.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.DGNkkEUd.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.DGNkkEUd.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DT2LXFv0.js
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DT2LXFv0.js
  • https://about.gitlab.com/_nuxt-new/chevron.DsT1Ref9.js
  • https://about.gitlab.com/_nuxt-new/chevron.DsT1Ref9.js
  • https://about.gitlab.com/_nuxt-new/NavigationButton.Cn58ndyt.js
  • https://about.gitlab.com/_nuxt-new/NavigationButton.Cn58ndyt.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.CgJvEbbB.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.CgJvEbbB.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.CoQqu4WM.js
  • https://about.gitlab.com/_nuxt-new/NavigationMobileMenu.CoQqu4WM.js
  • https://about.gitlab.com/_nuxt-new/hamburger.u7GpIpnu.js
  • https://about.gitlab.com/_nuxt-new/hamburger.u7GpIpnu.js
  • https://about.gitlab.com/_nuxt-new/Banner.DlHFCIYQ.js
  • https://about.gitlab.com/_nuxt-new/Banner.DlHFCIYQ.js
  • https://about.gitlab.com/_nuxt-new/Footer.DyItQNXU.js
  • https://about.gitlab.com/_nuxt-new/Footer.DyItQNXU.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.vue.DF14OInR.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.vue.DF14OInR.js
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.u91WiMTe.js
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.u91WiMTe.js
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.xrdFi46F.js
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.xrdFi46F.js
  • https://about.gitlab.com/_nuxt-new/Source.G0pIEL7q.js
  • https://about.gitlab.com/_nuxt-new/Source.G0pIEL7q.js
  • https://about.gitlab.com/_nuxt-new/NuxtImg.vue.DPynf7ee.js
  • https://about.gitlab.com/_nuxt-new/NuxtImg.vue.DPynf7ee.js
  • https://about.gitlab.com/_nuxt-new/gitlab.Bq4fZg9Z.js
  • https://about.gitlab.com/_nuxt-new/gitlab.Bq4fZg9Z.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.6qXqSbze.js
  • https://about.gitlab.com/_nuxt-new/SearchContent.6qXqSbze.js
  • https://about.gitlab.com/_nuxt-new/Common.DnupAyCI.js
  • https://about.gitlab.com/_nuxt-new/Common.DnupAyCI.js
  • https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js
  • https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.DiSRpOC2.js
  • https://about.gitlab.com/_nuxt-new/OneTrustCookieButton.DiSRpOC2.js
  • https://about.gitlab.com/_nuxt-new/Hero.BQfe6XKR.js
  • https://about.gitlab.com/_nuxt-new/Hero.BQfe6XKR.js
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.hqWnAGsq.js
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.hqWnAGsq.js
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.y8Cw4E0m.js
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.y8Cw4E0m.js
  • https://about.gitlab.com/_nuxt-new/Video.TT5dzvjQ.js
  • https://about.gitlab.com/_nuxt-new/Video.TT5dzvjQ.js
  • https://about.gitlab.com/_nuxt-new/VideoModal.SSWGe1KZ.js
  • https://about.gitlab.com/_nuxt-new/VideoModal.SSWGe1KZ.js
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee._nKCPs7-.js
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee._nKCPs7-.js
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.C-v7RPFX.js
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.C-v7RPFX.js
  • https://about.gitlab.com/_nuxt-new/StackingCards.CWPTVCIa.js
  • https://about.gitlab.com/_nuxt-new/StackingCards.CWPTVCIa.js
  • https://about.gitlab.com/_nuxt-new/toKebabCase.r_RV3gou.js
  • https://about.gitlab.com/_nuxt-new/toKebabCase.r_RV3gou.js
  • https://about.gitlab.com/_nuxt-new/CardCarousel.D_NW_Kgo.js
  • https://about.gitlab.com/_nuxt-new/CardCarousel.D_NW_Kgo.js
  • https://about.gitlab.com/_nuxt-new/ForresterReport.DaDiOK0m.js
  • https://about.gitlab.com/_nuxt-new/ForresterReport.DaDiOK0m.js
  • https://about.gitlab.com/_nuxt-new/NextSteps.RenrWCqc.js
  • https://about.gitlab.com/_nuxt-new/NextSteps.RenrWCqc.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/7f944245-...dd955adfdd08.json
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/7f944245-...dd955adfdd08.json
  • https://client-registry.mutinycdn.com/personalize/user_data/c18972324098ea25.jso...72324098ea25.json
  • https://client-registry.mutinycdn.com/personalize/client_data/c18972324098ea25.json
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location
  • https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL
  • https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL
  • https://about.gitlab.com/_nuxt-new/builds/meta/b282a0c3-c7e4-462a-9dc1-8b740e3dbde6.json
  • https://about.gitlab.com/_nuxt-new/builds/meta/b282a0c3-c7e4-462a-9dc1-8b740e3dbde6.json
  • https://munchkin.marketo.net/munchkin.js
  • https://munchkin.marketo.net/munchkin.js
  • https://client-registry.mutinycdn.com/mutiny-client/765.5.6.3.js
  • https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js
  • https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js
  • https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js
  • https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js
  • https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js
  • https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js
  • https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js
  • https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js
  • https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js
  • https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js
  • https://client-registry.mutinycdn.com/mutiny-client/223.5.6.3.js
  • https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js
  • https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js
  • https://client-registry.mutinycdn.com/mutiny-client/191.5.6.3.js
  • https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js
  • https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js
  • https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js
  • https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js
  • https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js
  • https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js
  • https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js
  • https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js
  • https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js
  • https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js
  • https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js
  • https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js
  • https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js
  • https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js
  • https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js
  • https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js
  • https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js
  • https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js
  • https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js
  • https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js
  • https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js
  • https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js
  • https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js
  • https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js
  • https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js
  • https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js
  • https://about.gitlab.com/images/banner/agent-platform-graphic-leftside.svg
  • https://about.gitlab.com/images/banner/agent-platform-graphic-leftside.svg
  • https://about.gitlab.com/images/banner/agent-platform-graphic-rightside.svg
  • https://about.gitlab.com/images/banner/agent-platform-graphic-rightside.svg
  • https://about.gitlab.com/images/homepage/background-star.svg
  • https://about.gitlab.com/images/homepage/background-star.svg
  • https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js
  • https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js
  • https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js
  • https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js
  • https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js
  • https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js
  • https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js
  • https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js
  • https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js
  • https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js
  • https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js
  • https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js
  • https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js
  • https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js
  • https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js
  • https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js
  • https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js
  • https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js
  • https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js
  • https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js
  • https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js
  • https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js
  • https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js
  • https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js
  • https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js
  • https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js
  • https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js
  • https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js
  • https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js
  • https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js
  • https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js
  • https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js
  • https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js
  • https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js
  • https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js
  • https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js
  • https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js
  • https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js
  • https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js
  • https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js
  • https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js
  • https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js
  • https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js
  • https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js
  • https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js
  • https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js
  • https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js
  • https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js
  • https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js
  • https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js
  • https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js
  • https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js
  • https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js
  • https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js
  • https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js
  • https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js
  • https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js
  • https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js
  • https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js
  • https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js
  • https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js
  • https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js
  • https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js
  • https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js
  • https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js
  • https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js
  • https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js
  • https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js
  • https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js
  • https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js
  • https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js
  • https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js
  • https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js
  • https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js
  • https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js
  • https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js
  • https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js
  • https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js
  • https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js
  • https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js
  • https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js
  • https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js
  • https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js
  • https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js
  • https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js
  • https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js
  • https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js
  • https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js
  • https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js
  • https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js
  • https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js
  • https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js
  • https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js
  • https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js
  • https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js
  • https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js
  • https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js
  • https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js
  • https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js
  • https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js
  • https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js
  • https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js
  • https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js
  • https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js
  • https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js
  • https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js
  • https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js
  • https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js
  • https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js
  • https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js
  • https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js
  • https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js
  • https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js
  • https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js
  • https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js
  • https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js
  • https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js
  • https://about.gitlab.com/images/navigation/the-source-promo-card.svg
  • https://about.gitlab.com/images/navigation/the-source-promo-card.svg
  • https://about.gitlab.com/_nuxt-new/GitLabSans.Cxxgg34v.woff2
  • https://about.gitlab.com/_nuxt-new/GitLabSans.Cxxgg34v.woff2
  • https://res.cloudinary.com/about-gitlab-com/video/upload/f_auto/q_auto/v17507800...odl2k6phsnlhm.mp4
  • https://about.gitlab.com/images/gitlab-duo/gartner-white.svg
  • https://about.gitlab.com/images/gitlab-duo/gartner-white.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-grey.svg
  • https://about.gitlab.com/images/customer_logos/goldman-sachs-grey.svg
  • https://about.gitlab.com/images/customer_logos/goldman-sachs-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/airbus-grey.svg
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-grey.svg
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-grey.svg
  • https://about.gitlab.com/images/customer_logos/carfax-grey.svg
  • https://about.gitlab.com/images/customer_logos/carfax-grey.svg
  • https://about.gitlab.com/images/customer_logos/nvidia-grey-logo.svg
  • https://about.gitlab.com/images/customer_logos/nvidia-grey-logo.svg
  • https://about.gitlab.com/images/customer_logos/ubs-logo-grey.svg
  • https://about.gitlab.com/images/customer_logos/ubs-logo-grey.svg
  • https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png
  • https://about.gitlab.com/images/customer_logos/hackerone-black-logo.png
  • https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/radio-france-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/cube-logo.png
  • https://about.gitlab.com/images/customer_logos/cube-logo.png
  • https://about.gitlab.com/images/customer_logos/caci-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/caci-black-logo.svg
  • https://about.gitlab.com/images/customer_logos/intuitive-machines.png
  • https://about.gitlab.com/images/customer_logos/intuitive-machines.png
  • https://about.gitlab.com/images/customer_logos/ally-bank-black.svg
  • https://about.gitlab.com/images/customer_logos/ally-bank-black.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-black.svg
  • https://about.gitlab.com/images/customer_logos/deutsche-telekom-black.svg
  • https://about.gitlab.com/images/customer_logos/agoda-black.svg
  • https://about.gitlab.com/images/customer_logos/agoda-black.svg
  • https://about.gitlab.com/images/customer_logos/sigma-defense-black-logo.png
  • https://about.gitlab.com/images/customer_logos/sigma-defense-black-logo.png
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-black.svg
  • https://about.gitlab.com/images/customer_logos/lockheed-martin-black.svg
  • https://about.gitlab.com/images/customer_logos/carfax.png
  • https://about.gitlab.com/images/customer_logos/carfax.png
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js
  • https://cdn.bizible.com/ipv...n.bizible.com/ipv
  • https://cdn.bizible.com/ipv...n.bizible.com/ipv
  • https://cdn.bizible.com/ipv...n.bizible.com/ipv
  • https://cdn.bizibly.com/u...cdn.bizibly.com/u
  • https://cdn.bizibly.com/u...cdn.bizibly.com/u
  • https://cdn.bizibly.com/u...cdn.bizibly.com/u
  • https://client-registry.mutinycdn.com/mutiny-client/237.5.6.3.js
  • https://client-registry.mutinycdn.com/mutiny-client/160.5.6.3.js
  • https://cdn.bizible.com/xdc.js...izible.com/xdc.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/0197d06c-...65664ba02/en.json
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/0197d06c-...65664ba02/en.json
  • https://about.gitlab.com/_nuxt-new/index.Cbn8qxQA.js
  • https://about.gitlab.com/_nuxt-new/index.Cbn8qxQA.js
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otFlat.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/v2/otPcTab.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otCommonStyles.css
  • https://client-registry.mutinycdn.com/mutiny-client/288.5.6.3.js
  • https://cdn.cookielaw.org/logos/static/ot_guard_logo.svg
  • https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f...tlab-logo-100.png
  • https://cdn.cookielaw.org/logos/static/powered_by_logo.svg
  • https://about.gitlab.com/images/ico/favicon.ico
  • https://about.gitlab.com/images/ico/favicon.ico
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.Cz0D3PXW.css
  • https://about.gitlab.com/_nuxt-new/SearchSuggestions.Cz0D3PXW.css
  • https://about.gitlab.com/_nuxt-new/Search.DhfWzWmZ.css
  • https://about.gitlab.com/_nuxt-new/Search.DhfWzWmZ.css
  • https://about.gitlab.com/_nuxt-new/NavigationCard.BJ098Xic.css
  • https://about.gitlab.com/_nuxt-new/NavigationCard.BJ098Xic.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.RdeokJTR.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownFooter.RdeokJTR.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DBOLvPX2.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdownList.DBOLvPX2.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.DDYrcOce.css
  • https://about.gitlab.com/_nuxt-new/NavigationDropdown.DDYrcOce.css
  • https://about.gitlab.com/_nuxt-new/NavigationButton.C4ETLmZg.css
  • https://about.gitlab.com/_nuxt-new/NavigationButton.C4ETLmZg.css
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.CmP-Ip6l.css
  • https://about.gitlab.com/_nuxt-new/NavigationDesktop.CmP-Ip6l.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.uR5FisaS.css
  • https://about.gitlab.com/_nuxt-new/NavigationMobile.uR5FisaS.css
  • https://about.gitlab.com/_nuxt-new/Navigation.3rUWLhwF.css
  • https://about.gitlab.com/_nuxt-new/Navigation.3rUWLhwF.css
  • https://about.gitlab.com/_nuxt-new/Banner.1PTndvqo.css
  • https://about.gitlab.com/_nuxt-new/Banner.1PTndvqo.css
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.CPPa0FOA.css
  • https://about.gitlab.com/_nuxt-new/LanguageSelector.CPPa0FOA.css
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.DRkGxDDO.css
  • https://about.gitlab.com/_nuxt-new/SocialMediaLinks.DRkGxDDO.css
  • https://about.gitlab.com/_nuxt-new/Source.BrZQDSxX.css
  • https://about.gitlab.com/_nuxt-new/Source.BrZQDSxX.css
  • https://about.gitlab.com/_nuxt-new/Footer.DRsZLK8-.css
  • https://about.gitlab.com/_nuxt-new/Footer.DRsZLK8-.css
  • https://about.gitlab.com/_nuxt-new/default.CupAYY5Y.css
  • https://about.gitlab.com/_nuxt-new/default.CupAYY5Y.css
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.BdgHv1IK.css
  • https://about.gitlab.com/_nuxt-new/EmailRedirect.BdgHv1IK.css
  • https://about.gitlab.com/_nuxt-new/Video.CcB3AYCZ.css
  • https://about.gitlab.com/_nuxt-new/Video.CcB3AYCZ.css
  • https://about.gitlab.com/_nuxt-new/VideoModal.CqnX6U8I.css
  • https://about.gitlab.com/_nuxt-new/VideoModal.CqnX6U8I.css
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.CN-M_ToF.css
  • https://about.gitlab.com/_nuxt-new/LoopingVideo.CN-M_ToF.css
  • https://about.gitlab.com/_nuxt-new/Hero.qxCogqWP.css
  • https://about.gitlab.com/_nuxt-new/Hero.qxCogqWP.css
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee.Df88lSnL.css
  • https://about.gitlab.com/_nuxt-new/CustomerLogosMarquee.Df88lSnL.css
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.XCeUDwwl.css
  • https://about.gitlab.com/_nuxt-new/SecondaryHero.XCeUDwwl.css
  • https://about.gitlab.com/_nuxt-new/StackingCards.BTFpzXHH.css
  • https://about.gitlab.com/_nuxt-new/StackingCards.BTFpzXHH.css
  • https://about.gitlab.com/_nuxt-new/CardCarousel.GVsScTww.css
  • https://about.gitlab.com/_nuxt-new/CardCarousel.GVsScTww.css
  • https://about.gitlab.com/_nuxt-new/ForresterReport.xbiuVxAJ.css
  • https://about.gitlab.com/_nuxt-new/ForresterReport.xbiuVxAJ.css
  • https://about.gitlab.com/_nuxt-new/NextSteps.DvODd2PQ.css
  • https://about.gitlab.com/_nuxt-new/NextSteps.DvODd2PQ.css
  • https://about.gitlab.com/api/_content/query/Pcvj2T2VgF.1753479250365.json...753479250365.json
  • https://about.gitlab.com/api/_content/query/Pcvj2T2VgF.1753479250365.json...753479250365.json
  • https://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c...b339825302241.css
  • https://about.gitlab.com/_nuxt-new/aos.DBVFWejY.js
  • https://about.gitlab.com/_nuxt-new/aos.DBVFWejY.js
  • https://cc.swiftype.com/cc.js?engine_key=6meAsJr1HTFB8FoyaYAv&url=https%3A%2F%2Fabout.gitlab.com%2F
  • https://www.googletagmanager.com/gtag/destination.../gtag/destination
  • https://www.googletagmanager.com/gtag/destination.../gtag/destination
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • https://analytics.gitlab.com/g/collect...lab.com/g/collect
  • Privacy advice (94)

    TitleAdviceScore
    Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader)A strict transport header is set but miss out on setting includeSubDomains90
    Description: The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.
    Do not share user data with third parties. (thirdPartyPrivacy)The page has 14% requests that are 3rd party (35 requests with a size of 1.3 MB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 13 consent-provider requests and uses 1 consent-provider tool. The page do 4 tag-manager requests and uses 1 tag-manager tool. The page do 4 survelliance requests and uses 1 survelliance tool. The page do 4 ad requests and uses 1 ad tool. The page do 1 analytics request and uses 1 analytics tool. The page do 1 content request and uses 1 content tool. The page do 12 utility requests and uses 2 utility tools.0
    Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.
    Offenders:
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js
  • https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/7f944245-...dd955adfdd08.json
  • https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location
  • https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL
  • https://cdn.bizible.com/scripts/bizible.js
  • https://munchkin.marketo.net/munchkin.js
  • https://res.cloudinary.com/about-gitlab-com/video/upload/f_auto/q_auto/v17507800...odl2k6phsnlhm.mp4
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js
  • https://cdn.bizible.com/ipv...n.bizible.com/ipv
  • https://cdn.bizibly.com/u...cdn.bizibly.com/u
  • https://cdn.bizible.com/xdc.js...izible.com/xdc.js
  • https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/0197d06c-...65664ba02/en.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otFlat.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/v2/otPcTab.json
  • https://cdn.cookielaw.org/scripttemplates/202506.1.0/assets/otCommonStyles.css
  • https://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c
  • https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0
  • https://events.launchdarkly.com/events/diagnostic/620c2f247f24eb0c056e3a8c
  • https://cdn.cookielaw.org/logos/static/ot_guard_logo.svg
  • https://app.launchdarkly.com/sdk/goals/620c2f247f24eb0c056e3a8c
  • https://app.launchdarkly.com/sdk/evalx/620c2f247f24eb0c056e3a8c/contexts/eyJraW5...c3MDJhOTA0NmZhIn0
  • https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f...tlab-logo-100.png
  • https://cdn.cookielaw.org/logos/static/powered_by_logo.svg
  • https://events.launchdarkly.com/events/diagnostic/620c2f247f24eb0c056e3a8c
  • https://s.swiftypecdn.com/install/v2/st.js
  • https://s.swiftypecdn.com/install/v2/config/Z4n7msKyctXXfJs66EKx.json
  • https://s.swiftypecdn.com/assets/new_embed-2552d8d62d9c60f59b3b11a5d083d1ebd090c...b339825302241.css
  • https://cc.swiftype.com/cc.js?engine_key=6meAsJr1HTFB8FoyaYAv&url=https%3A%2F%2Fabout.gitlab.com%2F
  • https://www.googletagmanager.com/gtag/destination.../gtag/destination
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://www.googletagmanager.com/gtag/js...nager.com/gtag/js
  • https://events.launchdarkly.com/events/bulk/620c2f247f24eb0c056e3a8c
  • https://events.launchdarkly.com/events/bulk/620c2f247f24eb0c056e3a8c
  • Page info

    Page info
    TitleThe most-comprehensive AI-powered DevSecOps platform
    Width1350
    Height7851
    DOM elements1382
    Avg DOM depth11
    Max DOM depth21
    Iframes1
    Script tags23
    Local storage2.8 KB
    Session storage0 b
    Network Information API4g
    Resource Hints
    preconnect
    https://cdn.cookielaw.org/
    https://geolocation.onetrust.com/
    prefetch
    https://about.gitlab.com/_nuxt-new/free-trial.CgW0vwCm.js
    https://about.gitlab.com/_nuxt-new/FreeTrial.COWk_RI_.js
    https://about.gitlab.com/_nuxt-new/Minimal.Bn6fo5nB.js
    https://about.gitlab.com/_nuxt-new/hide-mobile-free-trial.CL27EuGb.js
    https://about.gitlab.com/_nuxt-new/minimal.C3qbOX0p.js
    https://about.gitlab.com/_nuxt-new/Minimal.CX8aIIHB.js
    https://about.gitlab.com/_nuxt-new/no-banner.CI1HrBHs.js
    https://about.gitlab.com/_nuxt-new/the-source.kCgMDb_G.js
    https://about.gitlab.com/_nuxt-new/Navigation.CD8p2U98.js
    https://about.gitlab.com/_nuxt-new/useCheckIfMobile.BU-2NY_O.js
    https://about.gitlab.com/_nuxt-new/Newsletter.xb6_Zvsr.js
    https://about.gitlab.com/_nuxt-new/MktoForm.C_f_4cr2.js
    https://about.gitlab.com/_nuxt-new/GitLabSans.C1T6v24i.js
    https://about.gitlab.com/_nuxt-new/error-404.B496DCGT.js
    https://about.gitlab.com/_nuxt-new/nuxt-link.B0c4Bhw4.js
    https://about.gitlab.com/_nuxt-new/error-500.CLPu_BpI.js
    https://about.gitlab.com/_nuxt-new/AllJobs.BDL6Wu0i.js
    https://about.gitlab.com/_nuxt-new/SearchHero.CXGZRUYT.js
    https://about.gitlab.com/_nuxt-new/SearchInput.DuU1FfpM.js
    https://about.gitlab.com/_nuxt-new/SearchResults.z_suPEen.js
    https://about.gitlab.com/_nuxt-new/Postings.gdpBlRWb.js
    https://about.gitlab.com/_nuxt-new/DepartmentAccordion.D5oo1VSl.js
    https://about.gitlab.com/_nuxt-new/BlogArchive.DMxj41oC.js
    https://about.gitlab.com/_nuxt-new/NewsletterForm.CuoKr_MP.js
    https://about.gitlab.com/_nuxt-new/List.BGLjsrcn.js
    https://about.gitlab.com/_nuxt-new/BlogAuthor.BucaRPT_.js
    https://about.gitlab.com/_nuxt-new/Hero.4FUzwEEg.js
    https://about.gitlab.com/_nuxt-new/Breadcrumbs.C1KH5z-6.js
    https://about.gitlab.com/_nuxt-new/PostGrid.vLrOLE_W.js
    https://about.gitlab.com/_nuxt-new/PostCard.BtkDbkdQ.js
    https://about.gitlab.com/_nuxt-new/Pagination.BPPMC1EO.js
    https://about.gitlab.com/_nuxt-new/GetStarted.7oT6f_zV.js
    https://about.gitlab.com/_nuxt-new/BlogCategory.BUaaQJ8R.js
    https://about.gitlab.com/_nuxt-new/Hero.vue.Bp5v6rlN.js
    https://about.gitlab.com/_nuxt-new/FeaturedPost.CL4G3MsA.js
    https://about.gitlab.com/_nuxt-new/BlogHome.CNTfzHZ_.js
    https://about.gitlab.com/_nuxt-new/Hero.CyeoIlim.js
    https://about.gitlab.com/_nuxt-new/Search.B8ffKfN6.js
    https://about.gitlab.com/_nuxt-new/Categories.BJ-eyBvA.js
    https://about.gitlab.com/_nuxt-new/BlogPost.BBsP_IYO.js
    https://about.gitlab.com/_nuxt-new/Hero.CwPNaTvP.js
    https://about.gitlab.com/_nuxt-new/Body.ChFlSwur.js
    https://about.gitlab.com/_nuxt-new/ShareWrapper.NCE_MxuN.js
    https://about.gitlab.com/_nuxt-new/Resources.D9PhNkgo.js
    https://about.gitlab.com/_nuxt-new/ContactCta.C9gugL8t.js
    https://about.gitlab.com/_nuxt-new/BlogTag.BOZ9BO10.js
    https://about.gitlab.com/_nuxt-new/CaseStudy.D0Xpj_6x.js
    https://about.gitlab.com/_nuxt-new/HorizontalRule.BRM5odI2.js
    https://about.gitlab.com/_nuxt-new/ResourcesContainer.DtN9m24E.js
    https://about.gitlab.com/_nuxt-new/ResourceCard.Bl3vHTUC.js
    https://about.gitlab.com/_nuxt-new/useCloudinary.OmfKDvq7.js
    https://about.gitlab.com/_nuxt-new/DevSurvey2024Report.opDXElMU.js
    https://about.gitlab.com/_nuxt-new/ReportHero.Ck5BSp83.js
    https://about.gitlab.com/_nuxt-new/Header.CdhhokKC.js
    https://about.gitlab.com/_nuxt-new/Accordion.CqmWwxUx.js
    https://about.gitlab.com/_nuxt-new/Carousel.DtM4Ccst.js
    https://about.gitlab.com/_nuxt-new/BubbleTable.B2DCYw0k.js
    https://about.gitlab.com/_nuxt-new/ResultsRadio.DZUm-2Op.js
    https://about.gitlab.com/_nuxt-new/Accordion.CEKA56IL.js
    https://about.gitlab.com/_nuxt-new/interval.x_rD_Ya3.js
    https://about.gitlab.com/_nuxt-new/TextResults.CjePKzc2.js
    https://about.gitlab.com/_nuxt-new/OneTrustWarning.9u7KmR1F.js
    https://about.gitlab.com/_nuxt-new/DevSurveyLanding.lIk90luu.js
    https://about.gitlab.com/_nuxt-new/Intro.DjU0fXDz.js
    https://about.gitlab.com/_nuxt-new/Section.DNvdEsu_.js
    https://about.gitlab.com/_nuxt-new/DuoProSales.C6E3K7Pm.js
    https://about.gitlab.com/_nuxt-new/LaunchDarklyTest.aApCiiqb.js
    https://about.gitlab.com/_nuxt-new/PressRelease.TdlWPDF8.js
    https://about.gitlab.com/_nuxt-new/Markdown.B76vKEz5.js
    https://about.gitlab.com/_nuxt-new/Search.C1jTdBYl.js
    https://about.gitlab.com/_nuxt-new/Filter.BlqYJpLf.js
    https://about.gitlab.com/_nuxt-new/Results.BHShtH_B.js
    https://about.gitlab.com/_nuxt-new/Pagination.Dcu99o-A.js
    https://about.gitlab.com/_nuxt-new/TheSourceArticle.BvfmOg1Z.js
    https://about.gitlab.com/_nuxt-new/ArticleHero.Cdgxroln.js
    https://about.gitlab.com/_nuxt-new/ArticleContent.DE1JqIr6.js
    https://about.gitlab.com/_nuxt-new/KeyTakeaways.Ce-mfEbs.js
    https://about.gitlab.com/_nuxt-new/Form.BYBuRBVl.js
    https://about.gitlab.com/_nuxt-new/Resources.CTRSiGhp.js

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    Ruby 75  Programming languages
    Ruby on Rails 75  Web frameworks
    Google Cloud 100  IaaS
    Amazon Web Services 100  PaaS
    HSTS 100  Security
    Google Cloud CDN 100  CDN
    Cloudflare 100  CDN
    Amazon CloudFront 100  CDN
    HTTP/3 100  Miscellaneous
    Google Cloud Storage 100  Miscellaneous

    Data collected using Third Party Web 0.26.2

    Consent-provider
    Optanon
    Tag-manager
    Google Tag Manager
    Survelliance
    Google Tag Manager
    Ad
    Bizible
    Analytics
    Marketo
    Content
    Cloudinary
    Utility
    Launch Darkly
    Swiftype
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Interaction To Next Paint | Long Aninimation Frames | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeDIV
    Element/tag<div class="content" data-v-9e32612d=""></div>
    Render time 1.700 s
    Element render delay875 ms
    TTFB284 ms
    Resource delay314 ms
    Resource load duration228 ms
    Load time999 ms
    URL https://about.gitlab...phic-leftside.svg
    Size (width*height)7176
    DOM path
    div#__nuxt > div > header > a > div > div> div#__nuxt > div > header > a > div > div>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    Detected Cumulative Layout Shift

    0.03450 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.02602<div class="blob blob-1" data-v-2a3447ee=""></div>,<div class="blob blob-2" data-v-2a3447ee=""></div>,<div class="blob blob-3" data-v-2a3447ee=""></div>,<div class="blob blob-5" data-v-2a3447ee=""></div>
    body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(0) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(1) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(2) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(4) > div
    0.00820<div class="blob blob-1" data-v-2a3447ee=""></div>,<div class="blob blob-2" data-v-2a3447ee=""></div>,<div class="blob blob-3" data-v-2a3447ee=""></div>,<div class="blob blob-5" data-v-2a3447ee=""></div>
    body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(0) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(1) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(2) > div,body > div#__nuxt > div > div#page- > main > section:eq(0) > div:eq(0) > div:eq(4) > div
    0.00027<div class="navigation-dropdown" data-v-1fc80711="" data-v-9c14977f=""></div>,<div class="navigation-dropdown" data-v-1fc80711="" data-v-9c14977f=""></div>,<div class="navigation-dropdown" data-v-1fc80711="" data-v-9c14977f=""></div>,<div class="navigation-dropdown" data-v-1fc80711="" data-v-9c14977f=""></div>,<div class="navigation-dropdown" data-v-1fc80711="" data-v-9c14977f=""></div>
    body > div#__nuxt > div > nav#navigation > div#be-navigation-desktop > div > div > div:eq(0) > ul > li:eq(1) > div,body > div#__nuxt > div > nav#navigation > div#be-navigation-desktop > div > div > div:eq(0) > ul > li:eq(2) > div,body > div#__nuxt > div > nav#navigation > div#be-navigation-desktop > div > div > div:eq(0) > ul > li:eq(3) > div,body > div#__nuxt > div > nav#navigation > div#be-navigation-desktop > div > div > div:eq(0) > ul > li:eq(4) > div,body > div#__nuxt > div > nav#navigation > div#be-navigation-desktop > div > div > div:eq(0) > ul > li:eq(5) > div
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 568 ms.

    Event typepointerover
    Element typeP
    Element class name
    Event targetdiv.slp-container>h1.slp-text-heading1-bold.slp-mb-48.aos-init.aos-animate>div>p
    Load state when the event happenedloading

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    144.7 ms56.1 ms169.8 ms169.8 ms0 ms
    https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js

    Invoker:  MutationCallback
    Invoker Type: user-callback
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    141.3 ms298 ms147.9 ms0 ms147.9 ms
    https://cdn.cookielaw.org/scripttemplates/otSDKStub.js

    Invoker:  https://cdn.cookielaw.org/scripttemplates/otSDKStub.js
    Invoker Type: classic-script
    Window attribution: self

    https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js

    Invoker:  https://client-registry.mutinycdn.com/personalize/client/c18972324098ea25.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    108.2 ms183 ms1.9 ms1.1 ms0.8 ms
    https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL

    Invoker:  https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL
    Invoker Type: classic-script
    Window attribution: self

    https://www.googletagmanager.com/gtm.js?id=GTM-NJXWQL

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Source Function Name:  ZD
    Window attribution: self
    Source char position: 423956

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    72.8 ms121.2 ms2.7 ms0.3 ms2.4 ms
    https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js

    Invoker:  https://app.cdn.lookbookhq.com/production/jukebox/current/jukebox.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    72.1 ms187.4 ms9.8 ms0.3 ms9.5 ms
    https://s.swiftypecdn.com/install/v2/st.js

    Invoker:  https://s.swiftypecdn.com/install/v2/st.js
    Invoker Type: classic-script
    Window attribution: self

    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js

    Invoker:  import.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    43.9 ms97.6 ms1 ms0.3 ms0.7 ms
    https://www.googletagmanager.com/gtag/destination?id=G-ENFH3X7M5Y&cx=c&gtm=45He57n0v72277150za200&tag_exp=101509157~103116026~103200004~103233427~104684208~104684211

    Invoker:  https://www.googletagmanager.com/gtag/destination?id=G-ENFH3X7M5Y&cx=c&gtm=45He57n0v72277150za200&tag_exp=101509157~103116026~103200004~103233427~104684208~104684211
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    28.7 ms123.3 ms8.5 ms8.4 ms0.1 ms
    https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js

    Invoker:  Response.text.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js

    Invoker:  XMLHttpRequest.onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: 333789

    https://client-registry.mutinycdn.com/mutiny-client/288.5.6.3.js

    Invoker:  https://client-registry.mutinycdn.com/mutiny-client/288.5.6.3.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    25.3 ms208.5 ms4.3 ms1.5 ms2.8 ms
    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js

    Invoker:  Response.text.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js

    Invoker:  import.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://cdn.cookielaw.org/scripttemplates/202506.1.0/otBannerSdk.js

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://about.gitlab.com/_nuxt-new/entry.FOEaTVOc.js

    Invoker:  import.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    21 ms126.9 ms3.2 ms3.2 ms0 ms
    https://s.swiftypecdn.com/install/v2/st.js

    Invoker:  XMLHttpRequest.onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    https://about.gitlab.com/_nuxt-new/useDynamicComponents.BQu0mKqx.js

    Forced Style And Layout Duration: 10 ms

    Invoker:  import.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    19.7 ms168.4 ms2.7 ms2.6 ms0.1 ms
    https://cdn.bizible.com/scripts/bizible.js

    Invoker:  https://cdn.bizible.com/scripts/bizible.js
    Invoker Type: classic-script
    Window attribution: self

    https://client-registry.mutinycdn.com/mutiny-client/223.5.6.3.js

    Invoker:  https://client-registry.mutinycdn.com/mutiny-client/223.5.6.3.js
    Invoker Type: classic-script
    Window attribution: self

    Server timings

    There are no Server Timings.

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents21
    Frames21
    JSEventListeners388
    LayoutObjects1357
    MediaKeySessions0
    MediaKeys0
    Nodes3597
    Resources142
    ContextLifecycleStateObservers34
    V8PerContextDatas2
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers21
    AdSubframes0
    DetachedScriptStates3
    ArrayBufferContents3
    LayoutCount17
    RecalcStyleCount222
    LayoutDuration310
    RecalcStyleDuration175
    DevToolsCommandDuration23
    ScriptDuration1047
    V8CompileDuration3
    TaskDuration2880
    TaskOtherDuration1321
    ThreadTime2
    ProcessTime5
    JSHeapUsedSize19320232
    JSHeapTotalSize39845888
    FirstMeaningfulPaint1208
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests244
    Total domains18
    Total transfer size3.1 MB
    Total content size7.5 MB
    Responses missing compression84
    Number of cookies4
    Third party cookies0
    Requests per response code
    200235
    2012
    2022
    2043
    2061
    3011

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b47.2 KB308.0 KB1
    css0 b63.3 KB201.4 KB32
    javascript855 B2.0 MB5.7 MB153
    image991 B164.7 KB162.6 KB9
    font0 b317.5 KB316.9 KB1
    json0 b76.4 KB354.7 KB14
    svg0 b40.5 KB87.4 KB20
    video0 b376.1 KB375.2 KB1
    plain0 b1.8 KB199 B6
    other0 b0 b0 b5
    favicon0 b3.0 KB14.7 KB1
    Total1.8 KB3.1 MB7.5 MB243

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    gitlab.com161 msN/A0 b1
    about.gitlab.com57.039 s1.4 MB2.3 MB191
    client-registry.mutinycdn.com885 ms112.9 KB401.7 KB9
    cdn.cookielaw.org720 ms193.4 KB797.9 KB11
    geolocation.onetrust.com196 ms576 B159 B2
    www.googletagmanager.com478 ms546.6 KB1.7 MB4
    cdn.bizible.com299 ms25.2 KB67.1 KB3
    munchkin.marketo.net262 ms729 B1.2 KB1
    res.cloudinary.com391 ms376.1 KB375.2 KB1
    cdn.bizibly.com144 ms165 B43 B1
    api-v2.mutinyhq.io204 ms859 B4 B2
    app.launchdarkly.com206 ms1.3 KB2.6 KB4
    events.launchdarkly.com186 ms718 B0 b4
    s.swiftypecdn.com249 ms149.9 KB531.8 KB3
    cc.swiftype.com304 ms43 B43 B1
    app.cdn.lookbookhq.com163 ms320.0 KB1.4 MB1
    jukebox.pathfactory.com214 ms476 B0 b2
    analytics.gitlab.com336 ms550 B195 B3

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds4 hours1 year
    Last modified2 hours2 days55 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css55.5 KB28
    javascript852.9 KB7
    image8.6 KB2
    font0 b0
    other0 b3
    svg2.6 KB2
    json7.0 KB6
    favicon3.0 KB1
    plain1.4 KB5
    Total930.9 KB54

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css60.0 KB29
    javascript856.7 KB9
    image8.6 KB2
    font0 b0
    json48.0 KB9
    other0 b5
    svg2.6 KB2
    favicon3.0 KB1
    plain1.4 KB5
    Total980.2 KB62
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    consent-provider 13
    tag-manager 4
    survelliance 4
    ad 4
    analytics 1
    content 1
    utility 12
    CategoryNumber of tools
    consent-provider 1
    tag-manager 1
    survelliance 1
    ad 1
    analytics 1
    content 1
    utility 2

    Third party requests and tools

    consent-provider (13 requests)
    Optanon
    tag-manager (4 requests)
    Google Tag Manager
    survelliance (4 requests)
    Google Tag Manager
    ad (4 requests)
    Bizible
    analytics (1 requests)
    Marketo
    content (1 requests)
    Cloudinary
    utility (12 requests)
    Launch Darkly
    Swiftype

    Unmatched third party domains

    Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty.

    client-registry.mutinycdn.com
    api-v2.mutinyhq.io
    app.cdn.lookbookhq.com
    jukebox.pathfactory.com

    First party requests and sizes per content type

    Calculated using .*gitlab.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b47.2 KB308.0 KB1
    css0 b25.5 KB86.7 KB30
    javascript0 b831.2 KB1.3 MB132
    image0 b155.8 KB154.3 KB5
    font0 b317.5 KB316.9 KB1
    json0 b25.1 KB119.6 KB3
    svg0 b37.9 KB81.9 KB18
    favicon0 b3.0 KB14.7 KB1
    plain0 b550 B195 B3
    TotalN/A1.4 MB2.3 MB195

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b37.8 KB114.7 KB2
    javascript855 B1.2 MB4.4 MB21
    image991 B8.9 KB8.3 KB4
    font0 b0 b0 b0
    json0 b51.3 KB235.1 KB11
    video0 b376.1 KB375.2 KB1
    plain0 b1.3 KB4 B3
    other0 b0 b0 b5
    svg0 b2.6 KB5.6 KB2
    Total1.8 KB1.7 MB5.1 MB49
    afterPageCompleteCheck.jpg | layoutShift.jpg | largestContentfulPaint.jpg | 

    Screenshots

    afterPageCompleteCheck.jpg

    afterPageCompleteCheck.jpg

    layoutShift.jpg

    layoutShift.jpg

    largestContentfulPaint.jpg

    largestContentfulPaint.jpg