-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
38 lines (35 loc) · 951 Bytes
/
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
const siteTitle = 'Cúram Performance Tuning & Sizing guide'
var activeEnv = 'local'
var sitePrefix = process.env.SITE_PREFIX || "/"
console.log(`Using SITE_PREFIX: '${sitePrefix}'`)
module.exports = {
siteMetadata: {
title: siteTitle,
description: "Cúram Performance Tuning Guide",
keywords: 'cúram,containers,performance,tuning',
},
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/curam-favicon-32.svg"
},
},
],
};