This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
gatsby-config.js
147 lines (147 loc) · 3.82 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
module.exports = {
siteMetadata: {
title: `deepstream.io`,
description: `A realtime server for the modern web`,
author: `deepstreamHub GmbH`,
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
'gatsby-plugin-sass',
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.svg$/
}
}
},
// {
// resolve: `gatsby-plugin-prefetch-google-fonts`,
// options: {
// fonts: [
// {
// family: `Roboto`,
// variants: [400,300,100,500,700]
// },
// ],
// },
// },
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true,
allExtensions: true,
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `code-examples`,
path: `${__dirname}/code-examples`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-template`,
path: `${__dirname}/markdown-templates`,
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: "gatsby-remark-embed-markdown",
options: {
directory: `${__dirname}/markdown-templates/`,
}
},
"gatsby-remark-embed-code-relative",
// {
// resolve: `gatsby-remark-prettier`,
// options: {
// // Look for local .prettierrc file.
// // The same as `prettier.resolveConfig(process.cwd())`
// usePrettierrc: true,
// // Overwrite prettier options, check out https://prettier.io/docs/en/options.html
// prettierOptions: {}
// },
// },
'gatsby-remark-responsive-iframe',
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 840,
},
},
'gatsby-remark-copy-linked-files',
'gatsby-remark-smartypants',
"gatsby-remark-autolink-headers",
{
resolve: 'gatsby-remark-prismjs',
options: {
},
},
{
resolve: "gatsby-remark-custom-blocks",
options: {
blocks: {
glossary: {
classes: "glossary"
},
info: {
classes: "info"
},
},
},
}
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `deepstream.io`,
short_name: `deepstream.io`,
start_url: `/`,
background_color: `#FFFFFF`,
theme_color: `#0FBBEC`,
display: `minimal-ui`,
icon: `static/images/deepstream-elton-logo-startpage.svg`,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-63583386-1",
head: false,
anonymize: true,
exclude: [],
pageTransitionDelay: 0,
cookieDomain: "deepstream.io",
},
},
{
resolve: `gatsby-plugin-algolia-docsearch`,
options: {
apiKey: '792b342727cbc7164f4ef510b726cfa5',
indexName: 'deepstream',
inputSelector: '#algolia-docsearch',
debug: false // Set debug to true if you want to inspect the dropdown
}
}
],
}