Page weight
Checks the total HTML response size (aim for <500 KB).
Warum ist das wichtig?
A heavy page takes longer to load, especially on mobile connections. Google's Core Web Vitals are negatively affected by large page weights. Every extra kilobyte delays the Largest Contentful Paint (LCP).
Wie beheben Sie es?
Minify HTML, CSS and JavaScript. Remove unused CSS classes and JavaScript. Load scripts asynchronously. Use lazy loading for images. Consider a Content Delivery Network (CDN).
Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.
Häufige Fragen
Checks the total HTML response size (aim for <500 KB).
A heavy page takes longer to load, especially on mobile connections. Google's Core Web Vitals are negatively affected by large page weights. Every extra kilobyte delays the Largest Contentful Paint (LCP).
Minify HTML, CSS and JavaScript. Remove unused CSS classes and JavaScript. Load scripts asynchronously. Use lazy loading for images. Consider a Content Delivery Network (CDN).
Beispiel
Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.
# Vite automatically minifies CSS and JS in production builds
yarn build # or: npm run build
# TailwindCSS: remove unused classes (tailwind.config.js)
module.exports = {
content: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
],
}
# Lazy loading for images
<img src="product.webp" loading="lazy" width="800" height="600" alt="...">
# Remove unused plugins and scripts from package.json