-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
36 lines (35 loc) · 989 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
module.exports = {
siteMetadata: {
title: 'Data Migrators Documents',
description: 'Data Migrators Document repository for customers ',
keywords: 'gatsby,theme,carbon',
},
plugins: [
`gatsby-transformer-remark`,
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Carbon Design Gatsby Theme',
icon: 'src/images/favicon.svg',
short_name: 'Gatsby Theme Carbon',
start_url: '/',
background_color: '#ffffff',
theme_color: '#161616',
display: 'browser',
},
},
{
resolve: 'gatsby-theme-carbon',
options: {
remarkPlugins: [require("remark-grid-tables")],
iconPath: "./src/images/DM-Icon-RGB-PNG-128px-Black-Cropped.png",
mediumAccount: 'carbondesign',
repository: {
baseUrl:
'https://github.com/carbon-design-system/gatsby-theme-carbon',
subDirectory: '/packages/example',
},
},
},
],
};