-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
35 lines (34 loc) · 1.02 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
require("dotenv").config()
module.exports = {
siteMetadata: {
title: `linkbee`,
siteUrl: process.env.SITE_URL || process.env.URL || 'http://localhost:8000',
user: {
name: `@politiek_bij1`,
link: `https://www.instagram.com/politiek_bij1/`,
avatar: `avatar.png`
},
socialmedia: {
instagram: 'https://instagram.com/politiek_bij1',
youtube: 'https://www.youtube.com/channel/UCI1wgi8HoU-wAnuSPSTDDUA/featured',
linkedin: 'https://linkedin.com/company/BIJ1',
facebook: 'https://facebook.com/www.bij1.org',
twitter: 'https://twitter.com/politiekbij1'
}
},
plugins: [
'gatsby-plugin-sass',
{
resolve: 'gatsby-source-graphql',
options: {
typeName: 'Wings',
fieldName: 'wings',
url: process.env.GATSBY_WINGS_ENDPOINT || 'https://api.wings.dev',
headers: {
Authorization: `Bearer ${process.env.GATSBY_WINGS_APP_KEY}`,
'X-Wings-Project': process.env.GATSBY_WINGS_PROJECT,
},
},
},
],
}