-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
76 lines (76 loc) · 2.31 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
module.exports = {
siteMetadata: {
title: `Catalyst Core`,
description: `Speed up your GatsbyJS development workflow. Designed as a set of opinionated and advanced themes and starters using MDX and Theme-UI. Incorporates only gatsby-theme-catalyst-core.`,
keywords: [`gatsby`, `theme`, `react`, `catalyst`],
author: `Eric Howey`,
siteUrl: `https://gatsby-starter-catalyst-core.netlify.app`, //Change to you site address, required for sitemap.xml and robots.txt file among other things
menuLinks: [
{
name: `Page 1`,
link: `/page-1`,
type: `internal`, //internal or anchor
},
{
name: `Anchor 1`,
link: `#anchor-1`,
type: `anchor`, //internal or anchor
},
{
name: `Page 2`,
link: `/page-2`,
type: `internal`, //internal or anchor
},
],
socialLinks: [
{
name: `Email`,
link: `[email protected]`,
location: `footer`, //Options are "all", "header", "footer"
},
{
name: `Github`,
link: `https://www.github.com/ehowey`,
location: `all`, //Options are "all", "header", "footer"
},
{
name: `Twitter`,
link: `https://www.twitter.com/erchwy`,
location: `header`, //Options are "all", "header", "footer"
},
],
},
plugins: [
{
resolve: `gatsby-theme-catalyst-core`,
options: {
//Default options are:
// contentPath: `content/pages`,
// assetPath: `content/assets`,
// displaySiteLogo: true,
// displaySiteTitle: true,
// displaySiteLogoMobile: true,
// displaySiteTitleMobile: true,
// invertLogo: false,
// useStickyHeader: false,
// useSocialLinks: true,
// useColorMode: true,
// useKatex: false,
// footerContentLocation: "left", // "left", "right", "center"
// remarkImagesWidth: 1440,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-catalyst`,
short_name: `catalyst`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#cccccc`,
display: `minimal-ui`,
icon: `content/assets/catalyst-site-icon.png`, // This path is relative to the root of the site.
},
},
],
}