-
Notifications
You must be signed in to change notification settings - Fork 14
/
frontity.settings.js
executable file
·49 lines (48 loc) · 1.21 KB
/
frontity.settings.js
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
const settings = {
"name": "f1",
"state": {
"frontity": {
"url": "https://staging2.awsm.in/fone/",
"title": "AWSM F1 - Frontity theme",
"description": "A simple theme for Frontity WordPress development"
}
},
"packages": [
{
"name": "@awsmin/f1",
"state": {
"theme": {
"menu": [
["About", "/about/"],
["Services", "/services/"],
["Career", "/jobs/"],
["Blog", "/blog/"],
["Contact", "/contact/"]
],
"featured": {
"showOnList": true,
"showOnPost": true
},
// Whether to auto-fetch links on a page. Values can be "no" | "all" | "in-view" | "hover"
autoPrefetch: "hover"
}
}
},
{
"name": "@frontity/wp-source",
"state": {
"source": {
api: "https://staging2.awsm.in/fone/wp-json",
url: "https://staging2.awsm.in/fone",
"homepage": "/home",
"postsPage":"/blog"
}
}
},
"@frontity/tiny-router",
"@frontity/html2react",
// "frontity-contact-form-7",
"@awsmin/frontity-wp-job-openings"
]
};
export default settings;