-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
52 lines (51 loc) · 1.32 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
const path = require('path')
module.exports = {
siteMetadata: {
name: 'Athor',
title: 'Introducing Books 3.0',
description: 'Athor Inc.',
keywords: 'books, web3.0, blockchain, stellar, payments, cross, borders, nofees, publishing, creators'
},
plugins: [
{
resolve: 'gatsby-plugin-manifest',
options: {
name: "Athor.io",
short_name: "Athor",
start_url: "/",
background_color: "#6b37bf",
theme_color: "#6b37bf",
display: "minimal-ui",
icon: "src/assets/images/icon.png", // This path is relative to the root of the site.
}
},
'gatsby-plugin-offline',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-root-import',
options: {
src: path.join(__dirname, 'src'),
components: path.join(__dirname, 'src/components'),
pages: path.join(__dirname, 'src/pages')
}
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://athor.us19.list-manage.com/subscribe/post?u=1e4e4dfcc3a0e524fe48ea1a1&id=be1bc03d07'
}
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-83689-44',
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
respectDNT: true,
cookieDomain: "athor.io",
}
}]
}