From 5592ca26143822b9998b292765e2826d710c60b3 Mon Sep 17 00:00:00 2001 From: Ferdinand Malcher Date: Tue, 19 Nov 2024 11:33:06 +0100 Subject: [PATCH] add jekyll and Angular SSG to generators list --- docs/Static-Site-Generators.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/Static-Site-Generators.md b/docs/Static-Site-Generators.md index f57f937..96e6cef 100644 --- a/docs/Static-Site-Generators.md +++ b/docs/Static-Site-Generators.md @@ -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` @@ -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