I am working on the web vitals for a website and I was checking the Chrome Developer Tools the Network tab. The website loads fully, but I see that in the network tab, the server requests keep on increasing and the resources requested go up to 7.8MB and the website has a slider that keeps repeating in the network. How can I check why so many requests are made?
Why my website keeps requesting resources from server even after the website is fully loaded
174 Views Asked by codejs At
1
There are 1 best solutions below
Related Questions in WEB-PERFORMANCE
- Read Form Post Parameter of recorded web performance test
- Check render cost of image-rendering style with Google dev tools
- Visual Studio 2017 Load Test “No such host is known” with remote controller
- Is it possible to set cookies to Page Speed Insights tests?
- Does Google Optimize anti-flicker snippet affect LCP negatively?
- Ask for reasons why a div triggers an LCP and FCP problem
- High-Res profiling using DevTools
- To imitate render blocking and why this attempt has not succeed?
- Lazy loading images with accessibility and printer support
- Jmeter: Getting 502 bad gateway error for some of the requests in suite
- Why my website keeps requesting resources from server even after the website is fully loaded
- What is the difference between "Paint" and "Rasterize Paint" in Chrome dev-tools?
- How to test a page with an autoplaying video in Chrome on WebPageTest?
- Brotli for static resources
- When will chrome devtool's network time change to a smaller value after the request finish
Related Questions in CORE-WEB-VITALS
- How to improve LCP score of website where h1 is the largest contentful element painted within the viewport
- CrUX Core Web Vital Report Missing dates
- How do I avoid web vitals INP penalty if the button relies on external resources to work?
- When elements load it is registering a layout shift, but the only shift is those elements appearing
- Find the exact elements that causes INP issue in Core web vitals score for a website
- Till when is the core web vitals INP calculated?
- LCP, CLS and FCP metrics have different values in 'Core Web Vitals Assessment' and 'Performance' sections
- How can I prevent CLS with dynamic images of unknown height and aspect ratio?
- How do websites(especially news) keep their core web vitals as passed (in green) even though their page performances are considerably low
- CLS with Adsense Funding Choice
- Content Layout Shift When Page Loads
- Lighthouse detecting invisible layout shifts ? (incredibly high CLS)
- Why my website keeps requesting resources from server even after the website is fully loaded
- Gtag.js increasing LCP in pagespeed insights
- Google search console added my 21 URls in poor section of core web vitals and showing it as 126 URLs
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

I see that the resource names are
slide-X.jpg. Without seeing the website or its code, I can only guess that there's a carousel on the page that cycles through images. If the images aren't cacheable, they'd continue to be loaded over the network. Otherwise if they are cacheable, I'd expect to see no network requests at all or at worst a 304 HTTP "Not Modified" response code.So I'd recommend confirming what kinds of widgets are on the page like a carousel with repetitive behavior and checking the cache control headers of static content like images to avoid the need to load the images each time. Personally, I think carousels are bad UX so I'd even suggest you consider removing it all together! Regardless, you should still cache your content more efficiently.