Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.36 KB

Static-Site-Generators.md

File metadata and controls

50 lines (31 loc) · 1.36 KB

Static site generators

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
  • Default output: /myPath/index.html
  • Configuration: no, but various plugins exist

Next.js

Docusaurus

Nuxt

  • Command: nuxt generate
  • Default output: /myPath/index.html
  • Configuration (Nuxt v2): trailingSlash option

Hugo

  • Command: hugo
  • Default output: /myPath/index.html
  • Configuration: no options available

Angular Prerendering

TODO: add other static site generators

TODO add all other static site generators