-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgatsby-config.js
109 lines (109 loc) · 2.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
module.exports = {
siteMetadata: {
title: `Sébastien Lorber`,
description: `I'm Sébastien Lorber. I help startups be highly productive with React and React Native.`,
name: `Sébastien Lorber`,
siteUrl: `https://sebastienlorber.com`,
hero: {
heading: `Sébastien Lorber's website`,
maxWidth: 652,
},
social: [
{
name: `twitter`,
url: `https://twitter.com/sebastienlorber`,
},
{
name: `github`,
url: `https://github.com/slorber`,
},
{
name: `stackoverflow`,
url: `https://stackoverflow.com/users/82609/sebastien-lorber`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/in/sebastienlorber/`,
},
{
name: `devto`,
url: `https://dev.to/sebastienlorber`,
},
{
name: `mailto`,
url: `mailto:lorber.sebastien+website@gmail.com`,
},
],
},
plugins: [
`gatsby-plugin-react-native-web`,
'gatsby-plugin-resolve-src',
{
resolve: '@narative/gatsby-theme-novela',
options: {
authorsPage: true,
contentPosts: 'content/posts',
contentAuthors: 'content/authors',
basePath: '/',
mailchimp: true,
sources: {
local: true,
contentful: false,
},
},
},
/*
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://gmail.us4.list-manage.com/subscribe/post?u=5150dccbaa8d2e62d2aa5a921&id=adf9b01764',
},
},
*/
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Sébastien Lorber`,
short_name: `Sébastien Lorber`,
start_url: `/`,
background_color: `#000000`,
theme_color: `#000000`,
display: `standalone`,
icon: `src/assets/favicon.png`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-131003556-1',
},
},
{
resolve: `gatsby-plugin-sitemap`,
},
'gatsby-plugin-netlify',
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://sebastienlorber.com`,
},
},
{
resolve: `gatsby-plugin-webmention`,
options: {
username: 'sebastienlorber.com', // webmention.io username
identity: {
github: 'slorber',
twitter: 'sebastienlorber', // no @
},
mentions: true,
pingbacks: true,
//forwardPingbacksAsWebmentions: "https://example.com/endpoint",
domain: 'sebastienlorber.com',
fetchLimit: 10000, // number of webmentions to fetch
token: 'y7ZYx9itzOXhfeaKm20w5w',
},
},
],
};