forked from carbon-design-system/design-language-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
executable file
·53 lines (53 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
module.exports = {
siteMetadata: {
title: 'IBM Design Language',
siteUrl: 'https://www.ibm.com/design/language',
keywords: 'IBM,Design Language,IBM Design Language,IDL,Carbon',
description:
'The IBM Design Language provides the guidance and assets used to express the IBM brand in products, communications, marketing, events and digital experiences.',
},
flags: {
FAST_DEV: true,
FAST_REFRESH: true,
PARALLEL_SOURCING: true,
},
pathPrefix: '/design/language',
plugins: [
{
resolve: 'gatsby-theme-carbon',
options: {
iconPath: './src/images/favicon.svg',
mdxExtensions: ['.mdx'],
titleType: 'append',
repository: {
baseUrl:
'https://github.com/carbon-design-system/design-language-website',
branch: 'master',
},
},
},
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
name: `AppIcons`,
options: {
path: `${__dirname}/src/data/app-icons.yaml`,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'IBM Design Language',
description:
'The IBM Design Language provides the guidance and assets used to express the IBM brand in products, communications, marketing, events and digital experiences.',
short_name: 'IDL',
start_url: 'https://www.ibm.com/design/language/',
icon: 'src/images/favicon.svg',
background_color: '#f4f4f4',
theme_color: '#0f62fe',
},
},
`gatsby-plugin-sitemap`,
`gatsby-plugin-remove-serviceworker`,
],
};