Performance: SEO and meta tags
MEDIUM IMPACT
This affects the page's initial load speed and how quickly search engines and social platforms can understand the page content.
<svelte:head> <meta name="description" content="Concise page description." /> <meta name="robots" content="index, follow" /> <meta property="og:title" content="Page Title" /> <meta property="og:description" content="Concise description." /> <meta property="og:image" content="small-optimized-image.jpg" /> </svelte:head>
<svelte:head> <meta name="description" content="Very long description repeated multiple times..." /> <meta name="keywords" content="keyword1, keyword2, keyword3, keyword4, keyword5, keyword6, keyword7, keyword8, keyword9, keyword10" /> <meta name="robots" content="index, follow" /> <meta property="og:title" content="Page Title" /> <meta property="og:description" content="Repeated long description again..." /> <meta property="og:image" content="large-image.jpg" /> <meta property="og:image" content="another-large-image.jpg" /> </svelte:head>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Excessive meta tags with large content | Minimal (head only) | 0 | Increased due to blocking | [X] Bad |
| Minimal, concise meta tags | Minimal (head only) | 0 | Minimal blocking, faster paint | [OK] Good |