Skip to content

Commit dfea9e3

Browse files
authored
add jekyll and Angular SSG to generators list (#17)
1 parent aa11f6d commit dfea9e3

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/Static-Site-Generators.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
Let's figure out how different static site generators output static files for route `/myPath`.
55

6+
## Jekyll
7+
8+
- Command: `jekyll build`
9+
- Default output: `/myPath.html`
10+
- Configuration: no options available
11+
612
## Gatsby
713

814
- Command: `gatsby build`
@@ -20,11 +26,17 @@ Let's figure out how different static site generators output static files for ro
2026
- Default output: `/myPath/index.html`
2127
- Configuration: [trailingSlash option](https://docusaurus.io/docs/docusaurus.config.js#trailing-slash)
2228

23-
## NuxtJS
29+
## Nuxt
2430

2531
- Command: `nuxt generate`
2632
- Default output: `/myPath/index.html`
27-
- Configuration: [trailingSlash option](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash)
33+
- Configuration (Nuxt v2): [trailingSlash option](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash)
34+
35+
## Angular Prerendering
36+
37+
- Default output: `/myPath/index.html`
38+
- Configuration: no options available
39+
- Docs: [Angular Prerendering (SSG)](https://angular.dev/guide/prerendering)
2840

2941
## TODO: add other static site generators
3042

0 commit comments

Comments
 (0)