-
Notifications
You must be signed in to change notification settings - Fork 53
/
gatsby-config.js
57 lines (56 loc) · 1.35 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
const path = require('path')
const { repository } = require('./package.json')
module.exports = {
siteMetadata: {
repository,
title: 'Gatsby Mail',
unauthenticatedRoutes: [`/privacy-policy/`, `/terms-of-service/`],
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'gatsby-mail',
short_name: 'mail',
start_url: '/',
background_color: '#663399',
theme_color: '#663399',
display: 'minimal-ui',
icon: 'content/images/gatsby-icon.png',
},
},
'gatsby-plugin-emotion',
'gatsby-plugin-offline',
'gatsby-plugin-layout',
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'src/util/typography',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'content',
path: path.join(__dirname, 'content'),
},
},
'gatsby-transformer-remark',
'gatsby-transformer-yaml',
{
resolve: 'gatsby-source-graphql',
options: {
typeName: 'GitHub',
fieldName: 'github',
url: 'https://api.github.com/graphql',
headers: {
Authorization: `bearer ${process.env.GITHUB_API_TOKEN}`,
},
},
},
],
}