-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.ts
75 lines (70 loc) · 1.73 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
75
import path from 'path'
/* Dependencies */
import dotenv from 'dotenv'
import type { GatsbyConfig } from 'gatsby'
dotenv.config()
const languageCode = process.env.GATSBY_LANGUAGE_CODE ?? 'en'
const domainName = process.env.GATSBY_DOMAIN_NAME ?? 'sucari.tech'
const config: GatsbyConfig = {
graphqlTypegen: {
typesOutputPath: 'src/generated/gatsby-types.d.ts',
},
siteMetadata: {
siteUrl: `https://${
languageCode === 'en' ? '' : languageCode + '.'
}${domainName}`,
},
plugins: [
'gatsby-plugin-emotion',
{
resolve: 'gatsby-plugin-eslint',
options: {
cacheLocation: path.resolve(__dirname, '.cache', '.eslintcache'),
rulePaths: [
path.resolve(
__dirname,
'node_modules',
'gatsby',
'dist',
'utils',
'eslint-rules',
),
],
},
},
{
resolve: 'gatsby-plugin-google-gtag',
options: {
trackingIds: [process.env.GOOGLE_ANALYTICS_ID].filter(Boolean),
},
},
'gatsby-plugin-image',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: process.env.GATSBY_APP_NAME,
short_name: domainName,
crossOrigin: 'use-credentials',
icon: path.resolve(
__dirname,
'static',
'images',
'logo',
'400x400.png',
),
},
},
'gatsby-plugin-sitemap',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-contentful',
options: {
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
host: process.env.CONTENTFUL_HOST,
spaceId: process.env.CONTENTFUL_SPACE_ID,
},
},
],
}
export default config