Performance

External resource count

Counts external CSS, JS, image, and font files.

Warum ist das wichtig?

Each external resource requires a separate HTTP request. With HTTP/1.1, browsers can only handle 6 requests per domain simultaneously. Many files = longer load time, especially on mobile.

Wie beheben Sie es?

Bundle CSS and JS files. Remove unused plugins and scripts. Use a CDN for common libraries. Load fonts via font-display: swap. Limit the number of external domains you load resources from.

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

Counts external CSS, JS, image, and font files.

Each external resource requires a separate HTTP request. With HTTP/1.1, browsers can only handle 6 requests per domain simultaneously. Many files = longer load time, especially on mobile.

Bundle CSS and JS files. Remove unused plugins and scripts. Use a CDN for common libraries. Load fonts via font-display: swap. Limit the number of external domains you load resources from.

Beispiel

Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.

<!-- Everything bundled: 1 CSS file + 1 JS file -->
<link rel="stylesheet" href="/build/assets/app-abc123.css">
<script src="/build/assets/app-def456.js" defer></script>

<!-- Fonts via CDN with preconnect -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=inter:400,600,700" rel="stylesheet">

<!-- External scripts loaded asynchronously -->
<script src="https://www.googletagmanager.com/gtag/js" async></script>
Kostenlos starten