forked from celestiaorg/celestia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
106 lines (106 loc) · 2.86 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
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-anchor-links",
options: {
offset: -100
}
},
{
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-plugin-mdx",
"gatsby-plugin-sharp",
{
resolve: `gatsby-transformer-sharp`,
options: {
// The option defaults to true
checkSupportedExtensions: false,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/images`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/",
},
__key: "pages",
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `${__dirname}/src/pages/markdown-pages`,
},
},
"gatsby-plugin-react-helmet",
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 700,
withWebp: true,
showCaptions: true,
quality: 100,
},
},
{
resolve: `gatsby-remark-image-attributes`,
options: {
// ?Boolean=false
// If true, all attributes that
// aren't styleAttributes, will be
// added as data-* attributes to the
// image.
dataAttributes: false
}
},
`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
},
},
],
};