-
Notifications
You must be signed in to change notification settings - Fork 72
/
gatsby-config.js
37 lines (37 loc) · 1.11 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
module.exports = {
siteMetadata: {
title: 'IBM Video Streaming Developers',
description:
'Customize and control the viewing experience for your audience or create your own streaming applications, analyze engagement and telemetry data with the APIs of the IBM Video Streaming platform.',
keywords: 'gatsby,video,video streaming,developer,developers,api,player,ios,android,broadcast',
},
plugins: [
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Carbon Design Gatsby Theme',
short_name: 'Gatsby Theme Carbon',
start_url: '/channel-api-getting-started',
background_color: '#ffffff',
theme_color: '#0062ff',
display: 'browser',
icon: 'src/images/favicon.svg',
},
},
{
resolve: 'gatsby-theme-carbon',
options: {
isSearchEnabled: true,
repository: {
baseUrl: 'https://github.com/IBM/video-streaming-developer-docs',
subDirectory: '',
branch: 'master',
},
theme: {
homepage: 'g10',
interior: 'g10',
},
},
},
],
};