-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
76 lines (75 loc) · 2.14 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
pathPrefix: '__GATSBY_IPFS_PATH_PREFIX__',
siteMetadata: {
title: `HTE Blog`,
description: `The official blog for the HTE Community`,
siteUrl: `https://blog.hte.io/`,
home: {
title: `Hi, my name is Redrock and welcome to the site!`,
description: `I hope you enjoy your stay and please make yourself at home :)`
},
/* W3Layouts domain verification key for contact forms https://my.w3layouts.com/Forms/ */
w3l_dom_key: `5e609f7a2d23fCF_Domain_verify` //Need to update that probably
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `${__dirname}/_data`
}
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
classPrefix: "language-",
inlineCodeMarker: null,
aliases: {},
showLineNumbers: false,
noInlineHighlight: false
}
},
{
resolve: "gatsby-remark-emojis"
}
]
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: "UA-30027142-1",
head: true
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `HTE Blog`,
short_name: `HTE Blog`,
start_url: `/`,
background_color: `#6b37bf`,
theme_color: `#6b37bf`,
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
display: `standalone`,
icon: `src/images/icon.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-offline`,
'gatsby-plugin-ipfs',
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`
]
};