File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Let's figure out how different static site generators output static files for route ` /myPath ` .
5
5
6
+ ## Jekyll
7
+
8
+ - Command: ` jekyll build `
9
+ - Default output: ` /myPath.html `
10
+ - Configuration: no options available
11
+
6
12
## Gatsby
7
13
8
14
- Command: ` gatsby build `
@@ -20,11 +26,17 @@ Let's figure out how different static site generators output static files for ro
20
26
- Default output: ` /myPath/index.html `
21
27
- Configuration: [ trailingSlash option] ( https://docusaurus.io/docs/docusaurus.config.js#trailing-slash )
22
28
23
- ## NuxtJS
29
+ ## Nuxt
24
30
25
31
- Command: ` nuxt generate `
26
32
- Default output: ` /myPath/index.html `
27
- - Configuration: [ trailingSlash option] ( https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash )
33
+ - Configuration (Nuxt v2): [ trailingSlash option] ( https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-router#trailingslash )
34
+
35
+ ## Angular Prerendering
36
+
37
+ - Default output: ` /myPath/index.html `
38
+ - Configuration: no options available
39
+ - Docs: [ Angular Prerendering (SSG)] ( https://angular.dev/guide/prerendering )
28
40
29
41
## TODO: add other static site generators
30
42
You can’t perform that action at this time.
0 commit comments