-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathdocusaurus.config.js
95 lines (95 loc) · 2.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
module.exports = {
title: 'Amazon Connect Salesforce CTI Adapter',
tagline: 'Setup and Installation Guide',
url: 'https://amazon-connect.github.io/amazon-connect-salesforce-cti/',
baseUrl: '/amazon-connect-salesforce-cti/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'amazon-connect',
projectName: 'amazon-connect-salesforce-cti',
themeConfig: {
navbar: {
title: 'v5.24',
logo: {
src: 'img/logo.svg',
},
items: [
{
to: 'docs/lightning/notices',
label: 'Lightning',
position: 'left',
},
{
to: 'docs/classic/notices',
label: 'Classic',
position: 'left',
},
{
href: '/docs/other/earlier-versions',
label: 'Earlier Versions',
position: 'right',
},
{
href: 'https://github.com/amazon-connect/amazon-connect-salesforce-cti/tree/main/pdf',
label: 'PDF',
position: 'right',
},
{
href: 'https://github.com/amazon-connect/amazon-connect-salesforce-cti',
label: 'GitHub',
position: 'right',
},
],
},
algolia: {
apiKey: '8690f15e0161bbc9353e85d4c0860fa5',
indexName: 'amazon-connect-salesforce-cti',
appId: 'UE7MTAXIA1'
},
footer: {
style: 'dark',
// links: [
// {
// title: 'Links',
// items: [
// {
// label: 'Stack Overflow',
// href: 'https://stackoverflow.com/questions/tagged/docusaurus',
// },
// {
// label: 'Discord',
// href: 'https://discordapp.com/invite/docusaurus',
// },
// {
// label: 'Twitter',
// href: 'https://twitter.com/docusaurus',
// },
// ],
// },
// ],
copyright: `Copyright © ${new Date().getFullYear()} Amazon.com, Inc. or its affiliates. All Rights Reserved.`,
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/amazon-connect/amazon-connect-salesforce-cti',
sidebarCollapsible: false,
},
blog: {
showReadingTime: true,
editUrl:
'https://github.com/amazon-connect/amazon-connect-salesforce-cti',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};