-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
103 lines (103 loc) · 3.31 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
103 lines (103 loc) · 3.31 KB
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
96
97
98
99
100
101
102
103
module.exports = {
title: 'NestJS Starter Kit',
tagline: 'A powerful, production-ready NestJS starter template',
url: 'https://your-domain.com',
baseUrl: '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'latreon',
projectName: 'nest-starter-kit',
themeConfig: {
colorMode: {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: true,
},
navbar: {
title: 'NestJS Starter Kit',
logo: {
alt: 'NestJS Starter Kit Logo',
src: 'img/logo.svg',
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Documentation',
position: 'left',
},
{
href: 'https://github.com/latreon/nest-starter-kit',
label: 'GitHub',
position: 'right',
className: 'github-button',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Documentation',
items: [
{
label: 'Introduction',
to: 'docs/',
},
{
label: 'Getting Started',
to: 'docs/getting-started',
},
],
},
{
title: 'Community',
items: [
{
label: 'GitHub',
href: 'https://github.com/latreon/nest-starter-kit',
},
{
label: 'Report Issues',
href: 'https://github.com/latreon/nest-starter-kit/issues',
}
],
},
{
title: 'Resources',
items: [
{
label: 'NestJS Documentation',
href: 'https://docs.nestjs.com/',
},
{
label: 'TypeORM',
href: 'https://typeorm.io/',
},
{
label: 'JWT',
href: 'https://jwt.io/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Karimov Farda. Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
routeBasePath: 'docs',
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/latreon/nest-starter-kit-doc/edit/main/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};