forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
32 lines (32 loc) · 990 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
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: '',
},
},
},
{
resolve: 'gatsby-plugin-webpack-bundle-analyser-v2',
options: {
disable: !process.env.ANALYZE,
},
},
'gatsby-plugin-remove-serviceworker',
],
};