-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
39 lines (38 loc) · 978 Bytes
/
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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
});
module.exports = {
siteMetadata: {
title: `Expedition Fairbanks`,
description: `Section G15's 2023 Conclave`,
twitterUsername: `@sectiong15`,
image: `/images/logoYellow.png`,
siteUrl: `https://alaskaclave.com/`,
},
plugins: [
{
resolve: 'gatsby-plugin-manifest',
options: {
name: `Expedition Fairbanks`,
short_name: `Alaskaclave`,
start_url: `/`,
background_color: `#061A4A`,
theme_color: `#FFB70A`,
display: `standalone`,
icon: `static/images/logoYellow.png`
},
},
{
resolve: `gatsby-source-contentful`,
options: {
spaceId: `xgpifmnsfwpn`,
accessToken: `A6_qfqEQbWgA7H1bpsxZEoQugsksZdbYZVLJyCqZhPk`
}
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-robots-txt`
]
}