-
Notifications
You must be signed in to change notification settings - Fork 22
/
gatsby-config.js
68 lines (68 loc) · 1.95 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
/* eslint-env node */
const path = require(`path`);
module.exports = {
pathPrefix: process.env.PATH_PREFIX,
/*
siteMetadata: {
title: `NodeSchool Vancouver`,
description: `Website for NodeSchool Vancouver.`,
author: `@nodeschoolyvr`,
twitter: `NodeSchoolYVR`,
github: `nodeschool/vancouver`,
url: `https://nodeschool.io/vancouver/`,
slack: ``,
meetupGroup: `nodeschool-vancouver`,
email: `organizers@nodeschoolyvr.com`,
mailchimpSubscribeUrl: `https://nodeschoolyvr.us20.list-manage.com/subscribe/post?u=703e823487e1f52bfbe0cc32d&id=34f1146956`,
credits: {
logo: {
name: `Kenneth Ormandy`,
url: `https://kennethormandy.com/`,
},
},
},
*/
plugins: [
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `NodeSchool Vancouver`,
short_name: `nodeschool`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: path.relative(
__dirname,
require.resolve(`gatsby-theme-nodeschool/src/images/nodeschool-logo.png`),
),
},
},
{
resolve: `gatsby-plugin-sentry`,
options: {
dsn: process.env.SENTRY_DSN,
},
},
{
resolve: `gatsby-theme-nodeschool`,
options: {
title: `NodeSchool Vancouver`,
description: `Website for NodeSchool Vancouver.`,
twitter: `NodeSchoolYVR`,
github: `nodeschool/vancouver`,
url: `https://nodeschool.io/vancouver/`,
slack: ``,
meetupGroup: `nodeschool-vancouver`,
email: `organizers@nodeschoolyvr.com`,
mailchimpSubscribeUrl: `https://nodeschoolyvr.us20.list-manage.com/subscribe/post?u=703e823487e1f52bfbe0cc32d&id=34f1146956`,
credits: {
logo: {
name: `Kenneth Ormandy`,
url: `https://kennethormandy.com/`,
},
},
},
},
].filter(Boolean),
};