-
Notifications
You must be signed in to change notification settings - Fork 35
/
config.json
102 lines (102 loc) · 2.3 KB
/
config.json
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
95
96
97
98
99
100
101
102
{
"project": {
"src_path": "src",
"build_path": "dist",
"root_file_name": "index.html"
},
"links_replacements": [
{
"target": "\"developers.html\"",
"replace_by": "\"/developers\""
},
{
"target": "\"about.html\"",
"replace_by": "\"/about\""
},
{
"target": "\"faq.html\"",
"replace_by": "\"/faq\""
},
{
"target": "\"index.html\"",
"replace_by": "\"/\""
},
{
"target": "\"pricing.html\"",
"replace_by": "\"/pricing\""
},
{
"target": "\"privacy-policy.html\"",
"replace_by": "\"/privacy-policy\""
},
{
"target": "\"terms-of-service.html\"",
"replace_by": "\"/terms-of-service\""
}
],
"file_links_replacement": [
{
"target": "\"css/",
"replace_by": "\"../css/"
},
{
"target": "images/",
"replace_by": "../images/"
},
{
"target": "\"js/",
"replace_by": "\"../js/"
}
],
"transforms": [
{
"name": "developers",
"filepath": "developers.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "about",
"filepath": "about.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "faq",
"filepath": "faq.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "index",
"filepath": "index.html",
"move_to_subfolder": false,
"apply_links_replacements": true,
"apply_file_links_replacements": false
},
{
"name": "pricing",
"filepath": "pricing.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "privacy-policy",
"filepath": "privacy-policy.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "terms-of-service",
"filepath": "terms-of-service.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
}
]
}