-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
81 lines (81 loc) · 1.93 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
81 lines (81 loc) · 1.93 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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'Statsig Docs',
tagline: 'Ship faster!',
url: 'https://docs.statsig.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'statsig', // Usually your GitHub org/user name.
projectName: 'statsig-io/docs', // Usually your repo name.
themeConfig: {
navbar: {
title: '',
logo: {
alt: 'Statsig',
src: 'img/logo.svg',
srcDark: 'img/logo_white.svg',
href: 'https://statsig.com',
},
items: [
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: '/',
},
],
},
{
title: 'More',
items: [
{
label: 'Statsig Home',
href: 'https://statsig.com',
},
{
label: 'Blog',
href: 'https://blog.statsig.com',
},
{
label: 'Code',
href: 'https://github.com/statsig-io',
},
],
},
],
copyright: `Copyright (c) ${new Date().getFullYear()} Statsig, Inc. | Thanks Docusaurus`,
},
prism: {
additionalLanguages: ['swift', 'java', 'ruby', 'csharp'],
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
// Please change this to your repo.
editUrl:
'https://github.com/statsig-io/docs/edit/main/',
},
blog: false,
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
stylesheets: [
"https://fonts.googleapis.com/icon?family=Material+Icons",
],
};