forked from FleekHQ/webflow-example
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
93 lines (91 loc) · 2.02 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
{
"project": {
"src_path": "src",
"build_path": "dist",
"root_file_name": "index.html"
},
"links_replacements": [
{
"target": "\"register-now.html\"",
"replace_by": "\"/register-now\""
},
{
"target": "\"faq.html\"",
"replace_by": "\"/faq\""
},
{
"target": "\"covid-policy.html\"",
"replace_by": "\"/covid-policy\""
},
{
"target": "\"speakers.html\"",
"replace_by": "\"/speakers\""
},
{
"target": "\"travel.html\"",
"replace_by": "\"/travel\""
},
{
"target": "\"index.html\"",
"replace_by": "\"/\""
}
],
"file_links_replacement": [
{
"target": "\"css/",
"replace_by": "\"../css/"
},
{
"target": "images/",
"replace_by": "../images/"
},
{
"target": "\"js/",
"replace_by": "\"../js/"
}
],
"transforms": [
{
"name": "register-now",
"filepath": "register-now.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": "speakers",
"filepath": "speakers.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "covid-policy",
"filepath": "covid-policy.html",
"move_to_subfolder": true,
"apply_links_replacements": true,
"apply_file_links_replacements": true
},
{
"name": "travel",
"filepath": "travel.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
}
]
}