-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgatsby-config.js
93 lines (93 loc) · 2.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
module.exports = {
siteMetadata: {
defaultTitle: 'Welcome',
siteUrl: 'https://www.neontribe.co.uk',
siteName: 'Neontribe',
titleTemplate: '%s | Neontribe',
description:
'Neontribe is a digital agency. We learn from users, build something small, then measure how that’s helped. We hit deadlines, and make best use of your budget.',
image: '/site-meta-image.png',
},
plugins: [
'gatsby-remark-source-name',
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog-posts`,
path: `${__dirname}/src/data/blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `case-studies`,
path: `${__dirname}/src/data/case-studies`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/src/data/projects`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `tribers`,
path: `${__dirname}/src/data/tribers`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/data/pages`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1020,
},
},
`gatsby-remark-copy-linked-files`,
`gatsby-remark-prismjs`,
],
},
},
// {
// resolve: `gatsby-plugin-google-tagmanager`,
// options: {
// id: 'GTM-TVPPHS2',
// // Include GTM in development.
// // Defaults to false meaning GTM will only be loaded in production.
// includeInDevelopment: true,
// },
// },
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'gatsby-starter-default',
short_name: 'starter',
start_url: '/',
background_color: '#561dee',
theme_color: '#561dee',
display: 'minimal-ui',
icon: './src/arcs.png', // This path is relative to the root of the site.
},
},
'gatsby-plugin-styled-jsx',
'gatsby-plugin-sitemap',
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.app/offline
// 'gatsby-plugin-offline',
],
}