-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssg.json
More file actions
94 lines (94 loc) · 2.48 KB
/
ssg.json
File metadata and controls
94 lines (94 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"assets": ["assets"],
"defaultServerMode": "ssg",
"defaultEnv": "dev",
"environments": {
"dev": {
"dist": {
"basePath": "dev",
"static": "static-dev",
"assets": "",
"entryPoint": "index.html"
},
"staticBaseUrl": "http://localhost:8080",
"entryPoint": "index.html"
},
"prod": {
"prebuild": "prebuild.js",
"postbuild": "postbuild.js",
"dist": {
"mainTag": "<script src=\"/dist/bundles/can-stache-element-ssr/main.js\" main></script>",
"basePath": "prod",
"static": "static",
"assets": "",
"entryPoint": "index.html"
},
"staticBaseUrl": "http://localhost:8080",
"entryPoint": "production.html",
"serveFromDist": true
},
"e2e": {
"stealConfig": "tests/e2e-steal-config.json",
"dist": {
"basePath": "e2e",
"static": "e2e-static",
"assets": "",
"entryPoint": "e2e-index.html"
},
"staticBaseUrl": "http://localhost:8080",
"entryPoint": "tests/app/e2e-index.html",
"assets": ["tests/app/assets"],
"routes": [
"/",
"/css",
"/404",
"/timeout",
"/request",
"/progressive-loading",
"/progressive-loading/root",
"/progressive-loading/nested-timeout",
"/progressive-loading/nested-request",
"/unknown",
"/not-a-route"
]
},
"e2e-prod": {
"stealConfig": "tests/e2e-steal-config.json",
"prebuild": "tests/e2e-prod-prebuild.js",
"postbuild": "tests/e2e-prod-postbuild.js",
"dist": {
"mainTag": "<script src=\"/dist/bundles/tests/app/e2e-main.js\" main></script>",
"basePath": "e2e-prod",
"static": "e2e-prod-static",
"assets": "",
"entryPoint": "e2e-prod-index.html"
},
"staticBaseUrl": "http://localhost:8080",
"entryPoint": "tests/app/e2e-index.html",
"serveFromDist": true,
"assets": ["tests/app/assets"],
"routes": [
"/",
"/css",
"/404",
"/timeout",
"/request",
"/progressive-loading",
"/progressive-loading/root",
"/progressive-loading/nested-timeout",
"/progressive-loading/nested-request",
"/unknown",
"/not-a-route"
]
}
},
"routes": [
"/",
"/tasks",
"/progressive-loading",
"/progressive-loading/root",
"/progressive-loading/moo",
"/progressive-loading/cow",
"/404"
]
}