Let's figure out how different static site generators output static files for route /myPath
.
- Command:
jekyll build
- Default output:
/myPath.html
- Configuration: no options available
- Command:
gatsby build
- Default output:
/myPath/index.html
- Configuration: no, but various plugins exist
- Command:
next export
- Default output:
/myPath.html
- Configuration: trailingSlash option (different from Vercel trailingSlash option)
- Default output:
/myPath/index.html
- Configuration: trailingSlash option
- Command:
nuxt generate
- Default output:
/myPath/index.html
- Configuration (Nuxt v2): trailingSlash option
- Command:
hugo
- Default output:
/myPath/index.html
- Configuration: no options available
- Default output:
/myPath/index.html
- Configuration: no options available
- Docs: Angular Prerendering (SSG)
TODO add all other static site generators