-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
51 lines (51 loc) · 1.33 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
module.exports = {
title: 'rollcake-spa',
tagline: 'A progressive, incrementally-adoptable JavaScript framework for building micro frontends UI on the web.',
url: 'https://rollcakejs.github.io',
baseUrl: '/rollcake-spa.org/',
onBrokenLinks: 'throw',
favicon: 'img/favicon.ico',
organizationName: 'rollcakejs', // Usually your GitHub org/user name.
projectName: 'rollcake-spa.org', // Usually your repo name.
themeConfig: {
navbar: {
title: 'rollcake-spa',
logo: {
alt: 'rollcake-spa logo',
src: 'img/logo.svg',
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'right',
},
{
href: 'https://github.com/rollcakejs/rollcake-spa',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'light',
copyright: `Copyright © ${new Date().getFullYear()} rollcake-spa.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/rollcakejs/rollcake-spa.org/edit/master/website/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};