-
Notifications
You must be signed in to change notification settings - Fork 10
/
gatsby-config.js
76 lines (76 loc) · 2.03 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
module.exports = {
siteMetadata: {
title: `Crypto Academy: Learn How to Analyze Cryptocurrency Market`,
description: `Utilize our crypto academy as a comprehensive resource for knowledge about the crypto market, our products, tools, and metrics. Learn how to use these insights to enhance your market decisions.`,
author: `Santiment Team`,
siteUrl: "https://academy.santiment.net",
},
plugins: [
{
resolve: `gatsby-plugin-env-variables`,
options: {
whitelist: ["BACKEND_URL"],
},
},
{
resolve: `gatsby-plugin-algolia-docsearch`,
options: {
appId: "ZVVHPHW3IV", // App ID
apiKey: "712c7a00cdc130f6828b671dac8ad35f", // Search API key
indexName: "santiment_academy", // required
inputSelector: "#search", // required
debug: true,
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/docs`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#2F354D`,
theme_color: `#2F354D`,
display: `minimal-ui`,
icon: `src/images/logo.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [`gatsby-remark-copy-images`],
},
},
{
resolve: `gatsby-plugin-breadcrumb`,
options: {
useAutoGen: true,
autoGenHomeLabel: `Home`,
exclude: [
`/dev-404-page`,
`/404`,
`/404.html`,
`/offline-plugin-app-shell-fallback`,
],
useClassNames: true,
},
},
],
}