๐๐ผ๐ ๐๐ผ ๐๐๐ฑ๐ถ๐ ๐ฌ๐ผ๐๐ฟ ๐ช๐ฒ๐ฏ๐๐ถ๐๐ฒ ๐๐ผ๐ฟ๐ฒ ๐ช๐ฒ๐ฏ ๐ฉ๐ถ๐๐ฎ๐น๐ ๐ถ๐ป ๐ญ๐ฌ ๐ ๐ถ๐ป๐๐๐ฒ๐
Core Web Vitals track three things: โข LCP: How fast your largest content loads. โข INP: How fast your page responds to clicks. โข CLS: How much your layout jumps during loading.
You do not need paid tools. Use Chrome DevTools instead.
Step 1: Audit LCP (Largest Contentful Paint) Target: Under 2.5 seconds. โข Open your page in an Incognito window. โข Press F12 to open DevTools. โข Go to the Performance tab. โข Click Record and reload the page. โข Stop the recording when the page loads. โข Look for the LCP marker.
Fixes for LCP:
- Use WebP image formats.
- Add width and height to images.
- Preload your main hero image.
- Inline critical CSS.
Step 2: Audit INP (Interaction to Next Paint) Target: Under 200 milliseconds. โข Stay in the Performance tab. โข Click Record. โข Click buttons and open menus for 15 seconds. โข Stop the recording.
- Check the INP value.
Fixes for INP:
- Defer non-essential JavaScript.
- Break long tasks into smaller pieces.
- Remove unnecessary third-party scripts.
Step 3: Audit CLS (Cumulative Layout Shift) Target: Under 0.1. โข Open the Elements tab. โข Open the Console tab. โข Run a PerformanceObserver script to watch for layout shifts. โข Scroll through your page.
Fixes for CLS:
- Add dimensions to all images and videos.
- Reserve space for ads with CSS containers.
- Avoid adding content above existing text after the page loads.
Run this audit every month. Fast pages help your search rankings. Improving these scores leads to more organic traffic.
Source: https://dev.to/kui_luo/how-to-audit-your-websites-core-web-vitals-in-under-10-minutes-14fo