Hugoifier
docs: add edge CDN section — static HTML is perfect for edge delivery
Commit
48990c7d7b2ffb51849c6eb04e4a47a58e8b905ef75d34122faa2858bd43af5d
Parent
742e5d38136ad2f…
1 file changed
+9
-1
+9
-1
| --- docs/about.md | ||
| +++ docs/about.md | ||
| @@ -21,13 +21,21 @@ | ||
| 21 | 21 | - **Version-controlled** — every edit is tracked, every change is reversible |
| 22 | 22 | - **Portable** — no vendor lock-in, no proprietary export format |
| 23 | 23 | - **Writable anywhere** — any text editor, any machine, offline |
| 24 | 24 | - **Diffable** — you can review content changes in a PR like code changes |
| 25 | 25 | |
| 26 | +### Built for the Edge | |
| 27 | + | |
| 28 | +Hugo compiles your site to pure static HTML at build time. There's no server, no runtime, no application to deploy — just files. That means the output can be dropped onto any CDN and served directly from the edge, everywhere in the world, simultaneously. | |
| 29 | + | |
| 30 | +When a visitor hits your site, Cloudflare serves the HTML from a data center that's physically close to them — often within milliseconds of their location. There's no origin server to round-trip to, no database query in the critical path, no cold start. The page is already there, pre-rendered, waiting. | |
| 31 | + | |
| 32 | +This is what "edge-native" actually means in practice: static HTML that travels well. Every CDN on the planet — Cloudflare, Fastly, AWS CloudFront, GitHub Pages — is designed exactly for this. You get global low-latency delivery for free, as a natural consequence of how Hugo works. | |
| 33 | + | |
| 26 | 34 | ### Fast. Really Fast. |
| 27 | 35 | |
| 28 | -Hugo is written in Go and builds thousands of pages in under a second. But more importantly, the *output* is fast — pre-rendered HTML with no runtime processing means your pages load in milliseconds, anywhere in the world, without caching tricks or optimization layers. | |
| 36 | +Hugo is written in Go and builds thousands of pages in under a second. But the build speed is almost beside the point — the real win is that the *output* is fast. Pre-rendered HTML with no runtime processing means your pages load in milliseconds, anywhere in the world, without caching tricks, optimization layers, or infrastructure tuning. | |
| 29 | 37 | |
| 30 | 38 | ### Easy to Maintain |
| 31 | 39 | |
| 32 | 40 | No plugins to update. No runtime dependencies to keep in sync. No hosting environment to babysit. The site you build today will still build correctly in five years from the same source files. |
| 33 | 41 | |
| 34 | 42 |
| --- docs/about.md | |
| +++ docs/about.md | |
| @@ -21,13 +21,21 @@ | |
| 21 | - **Version-controlled** — every edit is tracked, every change is reversible |
| 22 | - **Portable** — no vendor lock-in, no proprietary export format |
| 23 | - **Writable anywhere** — any text editor, any machine, offline |
| 24 | - **Diffable** — you can review content changes in a PR like code changes |
| 25 | |
| 26 | ### Fast. Really Fast. |
| 27 | |
| 28 | Hugo is written in Go and builds thousands of pages in under a second. But more importantly, the *output* is fast — pre-rendered HTML with no runtime processing means your pages load in milliseconds, anywhere in the world, without caching tricks or optimization layers. |
| 29 | |
| 30 | ### Easy to Maintain |
| 31 | |
| 32 | No plugins to update. No runtime dependencies to keep in sync. No hosting environment to babysit. The site you build today will still build correctly in five years from the same source files. |
| 33 | |
| 34 |
| --- docs/about.md | |
| +++ docs/about.md | |
| @@ -21,13 +21,21 @@ | |
| 21 | - **Version-controlled** — every edit is tracked, every change is reversible |
| 22 | - **Portable** — no vendor lock-in, no proprietary export format |
| 23 | - **Writable anywhere** — any text editor, any machine, offline |
| 24 | - **Diffable** — you can review content changes in a PR like code changes |
| 25 | |
| 26 | ### Built for the Edge |
| 27 | |
| 28 | Hugo compiles your site to pure static HTML at build time. There's no server, no runtime, no application to deploy — just files. That means the output can be dropped onto any CDN and served directly from the edge, everywhere in the world, simultaneously. |
| 29 | |
| 30 | When a visitor hits your site, Cloudflare serves the HTML from a data center that's physically close to them — often within milliseconds of their location. There's no origin server to round-trip to, no database query in the critical path, no cold start. The page is already there, pre-rendered, waiting. |
| 31 | |
| 32 | This is what "edge-native" actually means in practice: static HTML that travels well. Every CDN on the planet — Cloudflare, Fastly, AWS CloudFront, GitHub Pages — is designed exactly for this. You get global low-latency delivery for free, as a natural consequence of how Hugo works. |
| 33 | |
| 34 | ### Fast. Really Fast. |
| 35 | |
| 36 | Hugo is written in Go and builds thousands of pages in under a second. But the build speed is almost beside the point — the real win is that the *output* is fast. Pre-rendered HTML with no runtime processing means your pages load in milliseconds, anywhere in the world, without caching tricks, optimization layers, or infrastructure tuning. |
| 37 | |
| 38 | ### Easy to Maintain |
| 39 | |
| 40 | No plugins to update. No runtime dependencies to keep in sync. No hosting environment to babysit. The site you build today will still build correctly in five years from the same source files. |
| 41 | |
| 42 |