forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
26 lines (26 loc) · 853 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
module.exports = {
siteMetadata: {
title: 'Carbon Design System',
description:
'Carbon is the design system for IBM web and product. It is a series of individual styles, components, and guidelines used for creating unified UI.',
keywords:
'IBM, design, system, Carbon, design system, Bluemix, styleguide, style, guide, components, library, pattern, kit, component, cloud',
},
plugins: [
'gatsby-plugin-lodash',
{
resolve: 'gatsby-theme-carbon',
options: {
mdxExtensions: ['.mdx'],
isSearchEnabled: true,
iconPath: './src/images/favicon-32.png',
titleType: 'prepend',
repository: {
baseUrl: 'https://github.com/carbon-design-system/carbon-website',
subDirectory: '',
},
},
},
'gatsby-plugin-remove-serviceworker',
],
};