forked from IBM/video-streaming-developer-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
33 lines (33 loc) · 1.04 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
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 and SDKs of the IBM Video Streaming platform.',
keywords: 'gatsby,video,video streaming,developer,developers,sdk,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',
},
},
},
],
};