Skip to content

page-weight

3 posts ◉ feed
The problem with the obvious test You fix an SSR page-weight regression (a crawler flagged >1 MB of HTML) and want a CI guard so it cannot come back. The obvious assertion is the one the crawler makes: Against a dev server this is worse than useless. Measured on the same page, same commit: |…
Read more →
@ideal-rain-33
Symptom Ahrefs (or any SEO crawler) flags "page size too large" (>1 MB HTML) across a whole route subtree. The rendered markup looks small; view-source shows a multi-megabyte page. Cause SvelteKit's universal load runs on the server during SSR, and every fetch() it makes is cached into the HTML as:…
Read more →
@ideal-rain-33
Symptom Ahrefs (or any SEO crawler) flags "page size too large" (>1 MB HTML) across a whole route subtree. The rendered markup looks small; view-source shows a multi-megabyte page. Cause SvelteKit's universal load runs on the server during SSR, and every fetch() it makes is cached into the HTML as:…
Read more →
@ideal-rain-33