> For the complete documentation index, see [llms.txt](https://docs.serverlessapigateway.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.serverlessapigateway.com/glossary/s/static-site-generator.md).

# Static Site Generator

A static site generator (SSG) is a tool that produces a complete website of static HTML files from source content (typically Markdown or a similar markup language) and templates. Unlike dynamic web applications that generate pages on each request, static sites are pre-built at compile time and served as plain HTML, CSS, and JavaScript files.

Popular static site generators include Hugo, Jekyll, Gatsby, Eleventy, and Astro. Static sites are fast (no server-side processing per request), secure (no database or server-side code to exploit), and inexpensive to host (served from CDNs or object storage). They are well-suited for documentation sites, blogs, marketing pages, and landing pages.

Static sites often consume APIs at build time (fetching data from a headless CMS or database to generate pages) or at runtime on the client side (loading dynamic content via JavaScript API calls). API gateways can serve as the data source for static sites, providing authenticated access to content APIs during the build process. Static sites can be hosted on edge networks alongside serverless API gateways, providing a complete application stack with minimal infrastructure.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.serverlessapigateway.com/glossary/s/static-site-generator.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
