-
Notifications
You must be signed in to change notification settings - Fork 1
/
docusaurus.config.js
86 lines (83 loc) · 2.11 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
module.exports = {
title: 'Tamako',
tagline: 'Multipurpose Discord Bot',
url: 'https://tamako.tech/',
baseUrl: '/',
onBrokenLinks: 'throw',
scripts: [
// String format.
'https://docusaurus.io/script.js',
// Object format.
{
src:
'https://arc.io/widget.min.js#ynoq11ke',
async: true,
},
],
favicon: 'img/logo.png',
organizationName: 'BearTS', // Usually your GitHub org/user name.
projectName: 'Tamako-Docs',
themeConfig: {
announcementBar: {
id: 'support_us',
content:
'If you like Tamako, Vote her on <a target="_blank" href="https://top.gg/bot/721100913611112470">top.gg</a> | Invite my Onnechan <a href="https://discord.com/oauth2/authorize?client_id=702074452317307061&scope=bot&permissions=1043721303">Mai</a>',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: true,
},
navbar: {
hideOnScroll: true,
title: 'Tamako - A discord bot',
logo: {
alt: 'Tamako',
src: 'img/logo.png',
},
items: [
{
to: 'docs/welcome',
label: 'Docs',
position: 'left',
},
{
to: 'docs/api/chatapi',
label: 'API',
position: 'right',
},
//{to: 'blog', label: 'Blog', position: 'left'},
{
href: 'https://discord.com/oauth2/authorize?client_id=721100913611112470&scope=bot&permissions=1043721303',
label: 'Invite Now',
position: 'right',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} Tamako Bot, Made By Bear#3437 | Built with Discord.js`,
},
},
plugins: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
indexDocs: true
},
],
],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
}
},
],
],
};