This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
executable file
·67 lines (66 loc) · 1.98 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
// @flow strict
module.exports = {
url: 'https://adeira.dev/',
baseUrl: '/',
favicon: 'img/favicon.ico',
title: 'adeira/universe', // Title for your website.
tagline: 'Universe of libs to write better code.',
// Add custom scripts here that would be placed in <script> tags.
scripts: ['https://buttons.github.io/buttons.js'],
// Used for publishing and more
projectName: 'adeira.dev',
organizationName: 'adeira',
themeConfig: {
// You may provide arbitrary config keys to be used as needed by your
// template. For example, if you need your repo's URL...
// repoUrl: 'https://github.com/facebook/test-site',
// algolia: { ... },
image: 'img/logo-transparent.png',
navbar: {
title: 'Adeira',
logo: {
src: 'img/logo-transparent.png',
alt: 'Adeira.dev',
},
items: [
// { to: 'docs/general/introduction', label: 'Docs', position: 'left' },
{
href: 'https://relay-example.adeira.dev/',
label: 'Relay Example',
position: 'left',
},
{
href: 'https://sx-tailwind.adeira.dev/',
label: 'SX Tailwind',
position: 'left',
},
{
href: 'https://github.com/adeira/universe',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
// This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
copyright: `Copyright © 2017 - 2019 Kiwi.com, 2019 - ${new Date().getFullYear()} Adeira`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
theme: {
customCss: (require.resolve('./static/css/custom.css') /*: string */),
},
docs: {
editUrl: 'https://github.com/adeira/universe/tree/master/src/docs/',
showLastUpdateTime: true,
showLastUpdateAuthor: true,
sidebarPath: (require.resolve('./sidebars.js') /*: string */),
},
scrollToTop: true,
},
],
],
};