-
Notifications
You must be signed in to change notification settings - Fork 31
/
gatsby-config.js
46 lines (46 loc) · 1.08 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
module.exports = {
siteMetadata: {
title: 'Cloud Native Bootcamp',
description: 'Cloud Native Bootcamp',
keywords: 'ibm,garage,cloud-native,bootcamp,cloud-native-101,cloudnative,native,101,cloud,cp4apps,kubernetes,containers,ci,cd,cicd,tekton,argocd,learning',
},
pathPrefix: "/",
plugins: [
'gatsby-transformer-json',
`gatsby-plugin-sharp`,
{
resolve: 'gatsby-theme-carbon',
options: {
isSearchEnabled: true,
repository: {
baseUrl:
'https://github.com/ibm-cloud-architecture/learning-cloudnative-101',
subDirectory: '/'
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: 'data',
path: './src/data'
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-149377589-4",
head: true
}
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-images`,
`gatsby-remark-images-zoom`,
],
},
},
]
};