forked from celestiaorg/celestia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
85 lines (85 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
83
84
85
module.exports = {
siteMetadata: {
siteUrl: "https://celestia.org",
title: "Celestia",
},
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-gatsby-cloud",
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: `./src/images/favicons/favicon-96x96.png`, // This path is relative to the root of the site.
theme_color: `#fff`,
icons: [
{
src: `/images/favicons/android-icon-192x192.png`,
sizes: `192x192`,
type: `image/png`,
},
],
},
},
{
resolve: `gatsby-plugin-plausible`,
options: {
domain: `celestia.org`,
// https://github.com/pixelplicity/gatsby-plugin-plausible/issues/49#issuecomment-716125674
customDomain: `plausible.celestia.org/js/plausible.js?original=`,
},
},
"gatsby-transformer-remark",
"gatsby-plugin-mdx",
"gatsby-plugin-sharp",
{
resolve: `gatsby-transformer-sharp`,
options: {
// The option defaults to true
checkSupportedExtensions: false,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
__key: "images",
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/",
},
__key: "pages",
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `./src/pages/resources/`,
},
},
`gatsby-transformer-remark`,
"gatsby-plugin-react-helmet",
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
// ...
`gatsby-remark-autolink-headers`,
],
},
},{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://celestia.us6.list-manage.com/subscribe/post?u=cde2461ba84f5279fff352829&id=bb230bef69', // string; add your MC list endpoint here; see instructions below
timeout: 3500, // number; the amount of time, in milliseconds, that you want to allow mailchimp to respond to your request before timing out. defaults to 3500
},
},
],
};