This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-config.js
110 lines (108 loc) · 3.22 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
110
require("dotenv").config({
path: `.env`,
})
const siteUrl = `https://hummingbot.org`
module.exports = {
flags: {
DEV_SSR: false,
},
siteMetadata: {
title: `Hummingbot`,
description: `Hummingbot is open source software that helps you run market making and arbitrage trading bots on any crypto centralized and decentralized exchange`,
secondaryDescription: `Build and run your own market making and arbitrage bots with Hummingbot`,
locale: "en",
author: `Hummingbot Foundation`,
siteUrl: siteUrl,
githubUrl: `https://github.com/hummingbot/hummingbot`,
discordUrl: `https://discord.gg/hummingbot`,
},
plugins: [
`gatsby-plugin-remove-fingerprints`,
// `gatsby-plugin-image`,
// `gatsby-plugin-use-query-params`,
// {
// resolve: `gatsby-plugin-sharp`,
// options: {
// defaults: {
// formats: [`auto`, `webp`],
// placeholder: `blurred`,
// quality: 80,
// breakpoints: [750, 1080, 1366, 1920],
// backgroundColor: `transparent`,
// },
// },
// },
// {
// resolve: `gatsby-source-filesystem`,
// options: {
// name: `images`,
// path: `${__dirname}/src/images`,
// },
// },
// {
// resolve: `gatsby-source-contentful`,
// options: {
// spaceId: CONTENTFUL_SPACE_ID,
// accessToken: CONTENTFUL_ACCESS_TOKEN,
// // host: `preview.contentful.com`,
// forceFullSync: false,
// downloadLocal: false,
// pageLimit: 500,
// },
// },
// {
// resolve: "gatsby-plugin-amplitude",
// options: {
// apiKey: GATSBY_AMPLITUDE_ID,
// enableOnDevMode: true,
// },
// },
{
resolve: `gatsby-plugin-styled-components`,
options: {
displayName: false,
},
},
// {
// resolve: `gatsby-plugin-algolia`,
// options: {
// appId: process.env.GATSBY_ALGOLIA_APP_ID,
// apiKey: process.env.ALGOLIA_ADMIN_KEY,
// queries: require("./src/utils/algolia-queries"),
// },
// },
{
resolve: 'gatsby-plugin-manifest',
options: {
icon: './src/svgs/favicon.png',
name: `Hummingbot Foundation`,
// short_name: `starter`,
// start_url: `/`,
// background_color: `#663399`,
// theme_color: `#663399`,
// display: `minimal-ui`,
},
},
{
resolve: "gatsby-plugin-google-tagmanager",
options: {
id: process.env.GOOGLE_TAG_MANAGER_ID,
includeInDevelopment: true,
// exclude: ["/preview/**", "https://"],
},
},
// {
// resolve: `gatsby-plugin-posthog`,
// options: {
// // Specify the API key for your Posthog Project (required)
// apiKey: process.env.POSTHOG_API_KEY,
// // Specify the app host if self-hosting (optional, default: https://app.posthog.com)
// apiHost: process.env.POSTHOG_APP_HOST_URL,
// // Puts tracking script in the head instead of the body (optional, default: true)
// head: true,
// // Enable posthog analytics tracking during development (optional, default: false)
// isEnabledDevMode: true
// }
// },
],
}