forked from mingrammer/diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteConfig.js
62 lines (48 loc) · 1.56 KB
/
siteConfig.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
54
55
56
57
58
59
60
61
62
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// See https://docusaurus.io/docs/site-config for all the possible
// site configuration options.
const siteConfig = {
title: 'Diagrams',
tagline: 'Diagram as Code',
url: 'https://diagrams.mingrammer.com',
baseUrl: '/',
cname: 'diagrams.mingrammer.com',
projectName: 'diagrams',
organizationName: 'mingrammer',
headerLinks: [
{doc: 'getting-started/installation', label: 'Docs'},
{doc: 'guides/diagram', label: 'Guides'},
{doc: 'nodes/aws', label: 'Nodes'},
{href: 'https://github.com/mingrammer/diagrams', label: 'GitHub'},
],
headerIcon: 'img/diagrams.ico',
footerIcon: 'img/diagrams.ico',
favicon: 'img/diagrams.ico',
colors: {
primaryColor: '#5E73E5',
secondaryColor: '#5E89E5',
},
copyright: `Copyright © ${new Date().getFullYear()} mingrammer`,
highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks.
theme: 'default',
},
// Add custom scripts here that would be placed in <script> tags.
scripts: ['https://buttons.github.io/buttons.js'],
// On page navigation for the current documentation page.
onPageNav: 'separate',
cleanUrl: true,
// Open Graph and Twitter card images.
facebookComments: false,
twitterImage: 'img/diagrams.png',
ogImage: 'img/diagrams.png',
docsSideNavCollapsible: false,
enableUpdateTime: true,
gaTrackingId: 'UA-84081627-3',
};
module.exports = siteConfig;