What is Deployment Analytics?
Per-window requests, errors, CPU time, and subrequests for every deployment, plus custom-domain status. Analytics turn “is it down?” from a feeling into a chart.
Related terms
Smoke Check (npm run check / build)
The cheapest reliable gate: typecheck plus production build. Run it after every structural change — it catches breakage code review would take ten times longer to find.
One-Click Deployment
Publishing a site to production hosting without manual configuration. BYOB deploys to an edge network with rollback to known commits when a release misbehaves.
Log File Analysis
Reading server logs to see which URLs bots actually fetch, how often, and with what status. Logs reveal crawl waste and orphaned discovery that crawler simulations can only guess at.
Svelte Runes
The `$state`, `$derived`, `$effect`, and `$props` primitives powering Svelte 5 reactivity. Runes are mandatory in generated code: explicit, compilable, and consistent across every component.
File-Based Routing
Pages defined by file location: `+page.svelte` renders, `+layout.svelte` wraps, `+server.js` serves data. The route tree is the app map — no separate router config to drift.
Load Function
Server-side data loading for a route before it renders. Load on the server for content crawlers and users need immediately; reach for client fetching only for interactive extras.