-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgatsby-config.js
39 lines (37 loc) · 1.03 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
const siteTitle = 'Curam SPM on Kubernetes Runbook'
var sitePrefix = process.env.SITE_PREFIX || "/spm-kubernetes/"
console.log(`Using SITE_PREFIX: '${sitePrefix}'`)
module.exports = {
siteMetadata: {
title: siteTitle,
description: 'Merative Social Program Management on Kubernetes Runbook',
keywords: 'merative,curam,containers',
},
pathPrefix: sitePrefix,
plugins: [
{
resolve: "gatsby-plugin-manifest",
options: {
name: siteTitle,
short_name: siteTitle,
start_url: sitePrefix,
background_color: "#ffffff",
theme_color: "#0062ff",
display: "browser",
icon: "node_modules/gatsby-theme-carbon/src/images/favicon.svg"
},
},
{
resolve: "gatsby-theme-carbon",
options: {
isSearchEnabled: true,
withWebp: true,
imageQuality: 75,
iconPath: "./src/images/spm-favicon-32.svg",
// repository: {
// baseUrl: "https://github.com/merative/spm-kubernetes",
// },
},
},
],
};