-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
34 lines (33 loc) · 909 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
module.exports = {
pathPrefix: process.env.PATH_PREFIX || '/',
siteMetadata: {
title: 'Carbon for IBM.com',
description:
'This is the Carbon for IBM.com website, which includes documentation and guidelines around design and development for IBM.com',
keywords: 'gatsby,theme,carbon,ibm',
homepageTheme: 'dark',
interiorTheme: 'g10',
},
plugins: [
{
resolve: 'gatsby-theme-carbon',
options: {
name: 'Carbon for IBM.com',
short_name: 'Carbon for IBM.com',
iconPath: './src/images/favicon.svg',
repository: {
baseUrl:
'https://github.com/carbon-design-system/carbon-for-ibm-dotcom-website',
subDirectory: '',
},
theme: {
homepage: 'dark',
interior: 'g10',
},
},
},
],
};