-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontity.settings.js
58 lines (57 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
const settings = {
name: "javierlorente",
state: {
frontity: {
url: "https://www.javierlorente.es/",
title: "Javier Lorente - SEO, inversiones y promociones para viajar.",
description: "SEO, inversiones y promos para viajar.",
backend: "https://frontity.javierlorente.es/",
},
},
packages: [
{
name: "@frontity/google-analytics",
state: {
googleAnalytics: {
trackingId: "UA-181168483-1",
},
},
},
{
name: "javier-lorente",
state: {
theme: {
logo: "J.Lorente",
menu: [],
showSearchInHeader: true,
autoPreFetch: "hover",
featured: {
showOnList: false,
showOnPost: false,
},
},
source: {
categoryBase: "c",
tagBase: "tag",
},
},
},
{
name: "@frontity/wp-source",
state: {
source: {
url: "https://frontity.javierlorente.es/",
redirections: "all",
params: {
per_page: 20,
},
},
},
},
"@frontity/tiny-router",
"@frontity/html2react",
"@frontity/head-tags",
"@frontity/wp-comments",
],
};
export default settings;