Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jekyll and Angular SSG to generators list #17

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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