-
Notifications
You must be signed in to change notification settings - Fork 2
/
docusaurus.config.js
53 lines (53 loc) · 1.44 KB
/
docusaurus.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 = {
title: 'LiveData Migrator',
tagline: 'WANdisco LiveData Migrator Documentation',
url: 'https://wandisco.github.io/wandisco-documentation-ldm/',
//url: 'http://localhost/',
baseUrl: '/wandisco-documentation-ldm/',
//baseUrl: '/',
favicon: 'img/favicon.png',
organizationName: 'wandisco', // Usually your GitHub org/user name.
projectName: 'wandisco-documentation-ldm', // Usually your repo name.
themeConfig: {
prism: {
theme: require('prism-react-renderer/themes/github'),
},
navbar: {
title: 'WANdisco LiveData Migrator',
logo: {
alt: 'My Site Logo',
src: 'img/logo.svg',
},
links: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} WANdisco Inc.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
// It is recommended to set document id as docs home page (`docs/` path).
homePageId: 'about',
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
//editUrl:
// 'https://github.com/facebook/docusaurus/edit/master/website/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};