This repository has been archived by the owner on Jun 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
gatsby-config.js
65 lines (65 loc) · 1.66 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
module.exports = {
siteMetadata: {
title: `Lithium`,
description: `Speed up your Gatsby development workflow.`,
keywords: [`gatsby`, `theme`, `react`, `blog`],
author: `Eric Howey`,
siteUrl: `https://gatsby-starter-catalyst-helium.netlify.app`, //Change to you site address, required for sitemap.xml and robots.txt file among other things
menuLinks: [
{
name: `About`,
link: `/about`,
},
{
name: `Work`,
link: `/work`,
},
{
name: `Contact`,
link: `/contact`,
},
],
socialLinks: [
{
name: `Email`,
link: `[email protected]`,
location: `footer`, //Options are "all", "header", "footer"
},
{
name: `Instagram`,
link: `https://www.instagram.com`,
location: `all`, //Options are "all", "header", "footer"
},
{
name: `Twitter`,
link: `https://www.twitter.com/erchwy`,
location: `all`, //Options are "all", "header", "footer"
},
],
},
plugins: [
{
resolve: `gatsby-theme-catalyst-lithium`,
options: {
// Core theme
remarkImagesWidth: 1920,
// Blog theme
excerptLength: 140,
// Lithium theme
useHero: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-catalyst`,
short_name: `catalyst`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#000000`,
display: `minimal-ui`,
icon: `content/assets/catalyst-site-icon.png`, // This path is relative to the root of the site.
},
},
],
}