メインコンテンツへスキップ
← Glossary
technology

Core Web Vitals

Core Web Vitals · CWV · Web Vitals

1 min May 19, 2026
Core Web Vitals sind drei von Google definierte Metriken zur Messung der Nutzererfahrung auf Webseiten: LCP (Largest Contentful Paint), INP (Interaction to Next Paint) und CLS (Cumulative Layout Shift).

Die drei Core Web Vitals

MetrikMisstGutVerbesserungsbedarf
LCPLadezeit (Largest Contentful Paint)≤ 2,5s> 4,0s
INPReaktionsfähigkeit (Interaction to Next Paint)≤ 200ms> 500ms
CLSLayout-Stabilität (Cumulative Layout Shift)≤ 0,1> 0,25

OCC Performance-Optimierung

OCC ist als statische Astro-Site von Grund auf schnell:

OptimierungWirkung
Statisches HTML (kein SSR)TTFB < 150ms
CSS inline (keine externen Stylesheets)Kein Render-Blocking
React Islands (client:visible)Lazy-loading
Caddy mit gzip60-70% kleinere Übertragung
_assets/ immutable cacheWiederholte Besuche instant
Keine externen FontsKein FOUT (Flash of Unstyled Text)
Keine Tracking-Scripts0 zusätzliche Requests

GEO-Relevanz

Schnelle Sites haben Vorteile:

  • Google bewertet CWV als Ranking-Faktor
  • AI-Crawler bevorzugen schnelle, stabile Seiten
  • Niedrige TTFB → schnelleres Crawling möglich
  • Keine Layout-Shifts → Inhalte zuverlässig parsebar

Messung

# Lighthouse CLI
npx lighthouse https://opencognitioncommons.org --only-categories=performance

# PageSpeed Insights API
curl "https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=https://opencognitioncommons.org"

引用

"Core Web Vitals." Open Cognition Commons Foundation. https://opencognitioncommons.org/ja/glossary/core-web-vitals. CC-BY 4.0.
機械可読メタデータ
{
  "@context": "https://schema.org",
  "@type": "DefinedTerm",
  "name": "Core Web Vitals",
  "description": "Core Web Vitals sind drei von Google definierte Metriken zur Messung der Nutzererfahrung auf Webseiten: LCP (Largest Contentful Paint), INP (Interaction to Next Paint) und CLS (Cumulative Layout Shift).\n",
  "url": "https://opencognitioncommons.org/ja/glossary/core-web-vitals",
  "license": "https://creativecommons.org/licenses/by/4.0/",
  "alternateName": [
    "Core Web Vitals",
    "CWV",
    "Web Vitals"
  ]
}