Skip to content

Commit

Permalink
docs: add SSG to glossary
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Jan 10, 2025
1 parent a56b01d commit fe2648f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/pages/glossary/+Page.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Link } from '@brillout/docpress'

Common terminology used in web development.


Expand All @@ -10,4 +12,11 @@ Common terminology used in web development.

*HMR* (**H**ot **M**odule **R**eplacement, aka live reload) is a development feature that updates modules in a running application without requiring a full page reload, preserving application state.

See also: [Vite > Why Vite > Slow Updates](https://vite.dev/guide/why.html#slow-updates)
See also: [Vite > Why Vite > Slow Updates](https://vite.dev/guide/why.html#slow-updates).


## SSG

*SSG* (**S**tatic **S**ite **G**generation, aka pre-rendering) is a web development approach where all pages are pre-rendered to HTML at build time, so that your app consists only of static assets that can be easily deployed to any static host, resulting in fast and inexpensive (usually free) hosting.

For more information see <Link href="/pre-rendering" />.

0 comments on commit fe2648f

Please sign in to comment.