This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
executable file
·82 lines (82 loc) · 2.28 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
module.exports = {
siteMetadata: {
title: `Montréal Photo Club 📷`,
name: `MontrealPhotoClub`,
siteUrl: `https://montrealphoto.club`,
description: `A friendly gathering of photographers in Montréal from all horizons and skills.`,
hero: {
heading: `We're a friendly gathering of photographers and we're hosting regular events in Montréal.`,
dontmiss: `Make sure you don't miss out our future events.`,
join: `Join now for free 👇`,
maxWidth: 1080,
},
social: [
{
name: `twitter`,
url: `https://twitter.com/mtlphotoclub`,
},
{
name: `instagram`,
url: `https://instagram.com/montrealphotoclub`,
},
{
name: `facebook`,
url: `https://facebook.com/montrealphotoclub`,
},
{
name: `github`,
url: `https://github.com/montrealphotoclub`,
},
],
},
plugins: [
{
resolve: "@narative/gatsby-theme-novela",
options: {
contentPosts: "content/posts",
contentAuthors: "content/authors",
basePath: "/",
authorsPage: true,
mailchimp: true,
sources: {
local: true,
// contentful: true,
},
},
},
{
resolve: `gatsby-plugin-umami`,
options: {
websiteId: '0e60a8fc-0072-47db-91a2-0ac805f433c7',
srcUrl: 'https://analytics.jpvalery.com/umami.js',
includeInDevelopment: false,
autoTrack: true,
respectDoNotTrack: true
},
},
{
resolve: "gatsby-plugin-mailchimp",
options: {
endpoint: "https://club.us12.list-manage.com/subscribe/post?u=82813799388b14db2174b8591&id=428156c588", // add your MC list endpoint here; see plugin repo for instructions
},
},
'gatsby-plugin-netlify',
'gatsby-plugin-advanced-sitemap',
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: `https://montrealphoto.club`,
sitemap:`https://montrealphoto.club/sitemap.xml`,
policy: [{ userAgent: '*' }],
},
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: `https://montrealphoto.club`,
sitemap:`https://montrealphoto.club/sitemap.xml`,
policy: [{ userAgent: '*' }],
},
},
],
};