-
Notifications
You must be signed in to change notification settings - Fork 18
/
gatsby-config.js
56 lines (56 loc) · 1.44 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
module.exports = {
siteMetadata: {
title: `nehalem-starter`,
siteUrl: `https://nehalem.netlify.com`,
description: `A Gatsby starter for nehalem`,
topics: [],
menu: [
{
name: 'Home',
path: '/'
},
{
name: 'Example',
path: '/page'
},
],
footerMenu: [
{
name: 'Example',
path: '/page'
},
],
search: true,
author: {
name: `nehalem`,
description: `I'm <strong>nehalem</strong>, a Gatsby theme by
<a href="https://nehalist.io" rel="noopener" target="_blank">nehalist.io</a>. If you like what you see feel free to give a
<a href="https://github.com/nehalist/gatsby-theme-nehalem" rel="noopener" target="_blank">star on GitHub!</a>`,
social: {
facebook: ``,
twitter: `https://twitter.com/nehalist`,
linkedin: `https://www.linkedin.com/in/kevin-hirczy-7a9377106/`,
instagram: ``,
youtube: ``,
github: `https://github.com/nehalist`,
twitch: ``
}
}
},
plugins: [
{
resolve: `@nehalist/gatsby-theme-nehalem`,
options: {
manifest: {
name: `nehalem - A Gatsby theme`,
short_name: `nehalem`,
start_url: `/`,
background_color: `#a4cbb8`,
theme_color: `#a4cbb8`,
display: `minimal-ui`,
icon: `${__dirname}/content/assets/images/logo.png`
}
}
}
]
};