Skip to content

Commit f861131

Browse files
authored
Apply suggestion from @teemingc
1 parent 7fe073e commit f861131

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

documentation/docs/60-appendix/60-glossary.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ Static Site Generation (SSG) is a term that refers to a site where every page is
6565

6666
In SvelteKit, you can do static site generation by using [`adapter-static`](adapter-static) or by configuring every page to be [prerendered](#Prerendering) using [the `prerender` page option](page-options#prerender) or [`prerender` config](configuration#prerender) in `svelte.config.js`.
6767

68-
6968
## SSR
7069

7170
Server-side rendering (SSR) is the generation of the page contents on the server. Returning the page contents from the server via SSR or prerendering is highly preferred for performance and SEO. It significantly improves performance by avoiding the introduction of extra round trips necessary in a SPA, and makes your app accessible to users if JavaScript fails or is disabled (which happens [more often than you probably think](https://kryogenix.org/code/browser/everyonehasjs.html)). While some search engines can index content that is dynamically generated on the client-side, it is likely to take longer even in these cases.

0 commit comments

Comments
 (0)