Skip to content

Commit

Permalink
add jekyll and Angular SSG to generators list (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalcher authored Nov 19, 2024
1 parent aa11f6d commit dfea9e3
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions docs/Static-Site-Generators.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

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

## Jekyll

- Command: `jekyll build`
- Default output: `/myPath.html`
- Configuration: no options available

## Gatsby

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

## NuxtJS
## Nuxt

- Command: `nuxt generate`
- Default output: `/myPath/index.html`
- Configuration: [trailingSlash option](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash)
- Configuration (Nuxt v2): [trailingSlash option](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash)

## Angular Prerendering

- Default output: `/myPath/index.html`
- Configuration: no options available
- Docs: [Angular Prerendering (SSG)](https://angular.dev/guide/prerendering)

## TODO: add other static site generators

Expand Down

0 comments on commit dfea9e3

Please sign in to comment.