-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
70 lines (68 loc) · 1.77 KB
/
docusaurus.config.js
File metadata and controls
70 lines (68 loc) · 1.77 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
'use strict';
const siteConfig = {
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
path: 'docs',
editUrl: 'https://github.com/unloadphp/unload-documentation',
sidebarPath: require.resolve('./sidebars.json'),
},
theme: {
customCss: require.resolve('./src/css/custom.scss'),
},
// gtag: {
// trackingID: '1',
// },
},
],
],
plugins: ['docusaurus-plugin-sass'],
title: 'UNLOAD',
tagline: '🚀 Serverless Laravel with AWS Cloud',
organizationName: 'unload',
projectName: 'unload.sh',
url: 'https://unload.sh',
baseUrl: '/',
favicon: 'img/favicon.png',
themeConfig: {
announcementBar: {
id: 'support_ukraine',
content:
'#StandWithUkraine 🇺🇦 <a target="_blank" rel="noopener noreferrer" href="https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md"> Help Ukraine Now</a>.',
backgroundColor: '#0057b7',
textColor: '#fff',
isCloseable: false,
},
navbar: {
title: 'UNLOAD',
logo: {
alt: 'Unload Logo',
src: 'img/unload.svg',
},
items: [
{label: 'Documentation', to: 'docs/install'},
{label: 'Support', to: 'help'},
{
label: 'GitHub',
href: 'https://github.com/unloadphp/unload',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [],
logo: {
alt: 'Unload Logo',
src: 'img/unload_white.png',
href: 'https://unload.sh/',
},
copyright: `Copyright © ${new Date().getFullYear()} unload.sh.`,
},
image: 'img/unload.svg',
},
scripts: ['https://buttons.github.io/buttons.js'],
};
module.exports = siteConfig;