forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
43 lines (42 loc) · 1.22 KB
/
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
39
40
41
42
43
const path = require('path');
module.exports = {
siteMetadata: {
title: 'Carbon Design System',
siteUrl: 'https://www.carbondesignsystem.com',
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.svg',
titleType: 'prepend',
repository: {
baseUrl: 'https://github.com/carbon-design-system/carbon-website',
subDirectory: '',
},
},
},
{
resolve: 'gatsby-plugin-fathom',
options: {
siteId: 'VMSGXQRS',
},
},
'gatsby-plugin-netlify-cache',
'gatsby-plugin-sitemap',
'gatsby-plugin-remove-serviceworker',
{
resolve: 'gatsby-plugin-component-index',
options: {
directory: path.resolve(__dirname, './src/data/index'),
},
},
],
};