-
Notifications
You must be signed in to change notification settings - Fork 25
/
gatsby-config.ts
57 lines (55 loc) · 1.6 KB
/
gatsby-config.ts
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
import type { GatsbyConfig } from 'gatsby'
const config: GatsbyConfig = {
siteMetadata: {
title: 'Centrifuge | The platform for onchain finance',
description:
'Centrifuge is the platform for onchain finance, providing the infrastructure and ecosystem to tokenize, manage, and invest into real-world assets.',
twitterUsername: '@centrifuge',
image: '/ogimage.png',
siteUrl: 'https://centrifuge.io/',
},
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
// If you use VSCode you can also use the GraphQL plugin
// Learn more at: https://gatsby.dev/graphql-typegen
graphqlTypegen: true,
plugins: [
'gatsby-plugin-styled-components',
{
resolve: 'gatsby-source-filesystem',
options: {
path: './data/',
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
gfm: true,
},
},
'gatsby-plugin-image',
'gatsby-transformer-json',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [process.env.NODE_ENV === 'production' ? 'G-T3SSM9GF7E' : null],
gtagConfig: {
anonymize_ip: true,
},
pluginConfig: {
head: false,
respectDNT: true,
},
},
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://centrifuge.us17.list-manage.com/subscribe/post?u=27084e1d9e6f92398b5c7ce91&id=e00b1ece80',
},
},
],
}
export default config