-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-config.ts
74 lines (71 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import type {GatsbyConfig} from 'gatsby'
import path from 'path'
const config: GatsbyConfig = {
flags: {
DEV_SSR: true,
PARALLEL_SOURCING: true,
PRESERVE_FILE_DOWNLOAD_CACHE: true,
FAST_DEV: true
},
siteMetadata: {
title: `ballons-and-ballons`,
siteUrl: `https://www.yourdomain.tld`
},
jsxRuntime: 'automatic',
plugins: [
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/
}
}
},
{
resolve: '@snek-at/gatsby-theme-shopify',
options: {
productPageTemplate: path.resolve(
'src/templates/ProductPageTemplate.tsx'
),
productsPageTemplate: path.resolve(
'src/templates/ProductsPageTemplate.tsx'
)
}
},
{
resolve: `gatsby-plugin-jaen`,
options: {
pylonUrl: 'https://pylons.cronit.io/jaen/graphql',
remote: {
repository: 'ballonsballons-at/ballons-jaen'
},
zitadel: {
organizationId: '270250197911609348',
clientId: '270250453697110020@website',
authority: 'https://accounts2.cronit.io',
redirectUri:
process.env.NODE_ENV === 'production'
? 'https://ballons-ballons.at'
: 'http://localhost:8000',
projectIds: ['270250070505431044']
},
googleAnalytics: {
trackingIds: ['G-M58K75M9PG']
},
sentry: {
org: 'cronit',
project: 'ballons-ballons',
dsn: 'https://[email protected]/2'
}
}
},
{
resolve: `gatsby-jaen-mailpress`,
options: {
pylonUrl: 'https://pylons.cronit.io/mailpress/graphql',
}
}
// 'gatsby-plugin-webpack-bundle-analyser-v2'
]
}
export default config