-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontity.settings.js
49 lines (48 loc) · 946 Bytes
/
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": "oriol-im",
"state": {
"frontity": {
"url": "https://www.oriol.im",
"title": "I'm Oriol",
"description": "Just the place where @OriolEgea writes things..."
}
},
"packages": [
{
"name": "@frontity/mars-theme",
"state": {
"theme": {
"menu": [
[
"Inicio",
"/"
],
[
"Sobre mí",
"/about/"
],
[
"Contacto",
"/contact/"
]
],
"featured": {
"showOnList": false,
"showOnPost": true
}
}
}
},
{
"name": "@frontity/wp-source",
"state": {
"source": {
"api": "https://wp.oriol.im/wp-json"
}
}
},
"@frontity/tiny-router",
"@frontity/html2react"
]
};
export default settings;