-
Notifications
You must be signed in to change notification settings - Fork 26
/
gatsby-config.js
48 lines (48 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
47
48
module.exports = {
siteMetadata: {
title: 'IBM Cloud Sandbox',
description: 'Cloud-Native Learning Journey',
keywords: 'gatsby,theme,carbon',
},
pathPrefix: "/ibm-gsi-cloudnative-journey",
plugins: [
{
resolve: 'gatsby-plugin-sharp',
options: {
defaults: {},
failOnError: true,
base64Width: 20,
forceBase64Format: 'png',
useMozJpeg: process.env.GATSBY_JPEG_ENCODER === 'MOZJPEG',
stripMetadata: true,
defaultQuality: 50,
},
},
{
resolve: 'gatsby-theme-carbon',
options: {
isSearchEnabled: true,
repository: {
baseUrl:
'https://github.com/ibm-gsi-ecosystem/ibm-gsi-cloudnative-journey',
subDirectory: '/',
},
},
},
'gatsby-transformer-json',
{
resolve: `gatsby-source-filesystem`,
options: {
name: 'data',
path: './src/data'
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-155887541-1",
head:true
},
},
]
};