-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
123 lines (123 loc) · 2.58 KB
/
gatsby-config.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module.exports = {
siteMetadata: {
title: `Sky Lite`,
siteUrl: `https://yoursite.com`,
description: `A lightweight GatsbyJS starter base with Material-UI and MDX Markdown support.`,
components: {
appbar: {
position: "sticky",
links: [
{
title: "Doc 1",
url: "/doc1"
},
{
title: "Doc 2",
url: "/doc2"
}
]
},
footer: {
copyright: "yoursite.com",
columns: [
{
heading: "Column 1",
links: [
{
title: "Link 1",
url: "#"
},
{
title: "Link 2",
url: "#"
},
{
title: "Link 3",
url: "#"
}
]
},
{
heading: "Column 2",
links: [
{
title: "Link A",
url: "#"
},
{
title: "Link B",
url: "#"
},
{
title: "Link C",
url: "#"
}
]
},
{
heading: "Column 3",
links: [
{
title: "Link x",
url: "#"
},
{
title: "Link y",
url: "#"
},
{
title: "Link z",
url: "#"
}
]
}
]
}
},
templates: {
home: {
totalPosts: 3,
template: "home"
},
pages: {
path: "/content/pages/",
template: "page"
},
posts: {
path: "/content/posts/",
pathPrefix: "posts",
template: "post",
filters: {
tag: {
pathPrefix: "tag",
template: "tag",
totalPosts: 3,
pagination: {
template: "resultsTag",
resultsPerPage: 6
}
}
},
pagination: {
template: "resultsAll",
resultsPerPage: 6
}
}
}
},
plugins: [
{ resolve: `gatsby-theme-sky-lite` },
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Sky Lite`,
short_name: `SkyLite`,
start_url: `/`,
background_color: `#eff2f6`,
theme_color: `#1f55ff`,
display: `standalone`,
icon: `src/images/favicon.png`
}
}
]
};