diff --git a/packages/docs/src/pages/glossary.astro b/packages/docs/src/pages/glossary.astro index 586b3f7..c435984 100644 --- a/packages/docs/src/pages/glossary.astro +++ b/packages/docs/src/pages/glossary.astro @@ -55,14 +55,12 @@ import Layout from '../layouts/Layout.astro'
- In an MPA, each navigation triggers a full browser request and the server - responds with a complete HTML document. HTML is generated on the server - per request, so the browser always receives ready-to-display content. - JavaScript is optional and typically used only for progressive - enhancement. In-memory state is lost on every navigation. Because content - is present in the initial HTML response, MPAs are naturally SEO-friendly. - The server must be capable of rendering and serving a full page for every - route. + In an MPA, each navigation triggers a `document` request by the browser + and the server (or CDN) responds with a complete HTML document, so the + browser always receives ready-to-display content. JavaScript is optional + and typically used only for progressive enhancement. In-memory state is + lost on every navigation. Because content is present in the initial HTML + response, MPAs are naturally SEO-friendly.