forked from witchscrow/dev.tezos.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
65 lines (64 loc) · 1.63 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
const languages = require("./src/utils/languages.js")
module.exports = {
siteMetadata: {
title: `Tezos Developer Portal`,
author: `Tezos`,
description: `Welcome to the Tezos Developer Portal. Explore and find the tools you need to get started building on Tezos right now.`,
siteUrl: `https://developers.tezos.com/`,
languages,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-content`,
path: `${__dirname}/src/content`,
},
},
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://tezos.us6.list-manage.com/subscribe/post?u=80b9a27c332a234b4cac5c13b&id=d8f4b4112e'
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
//trackingId: `ADD YOUR TRACKING ID HERE`,
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Tezos.com',
short_name: 'Tezos',
start_url: '/',
background_color: '#0055FF',
theme_color: '#0055FF',
display: 'minimal-ui',
icon: 'src/assets/icon.png'
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-emotion`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /\.svg/ // See below to configure properly
}
}
}
],
}