-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
79 lines (79 loc) · 2.77 KB
/
docusaurus.config.js
File metadata and controls
79 lines (79 loc) · 2.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
71
72
73
74
75
76
77
78
79
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'Siemienik Paweł',
tagline: 'The Open Source Software Enthusiast',
url: 'https://siemienik.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'favicons/favicon.ico',
organizationName: 'siemienik',
projectName: 'siemienik.com',
themeConfig: {
algolia: {
appId: 'SLQPPWS57A',
apiKey: '6999d6afdf94eeec865cb0661be928a3',
indexName: 'siemienik',
},
navbar: {
title: 'Siemienik',
logo: {
alt: 'Siemienik',
src: 'img/SIEMIENIK-sygnet-kwadrat-brown-small.png'
},
items: [
{to: '/blog/', label: 'Blog', position: 'left', activeBasePath: 'blog/'},
{to: '/docs/', position: 'right', label: 'DOCS:', activeBasePath: 'docs'},
{to: '/docs/xlsx-renderer/', position: 'right', label: 'XLSX-Renderer', activeBasePath: 'docs/xlsx-renderer'},
{to: '/docs/xlsx-import/', position: 'right', label: 'XLSX-Import', activeBasePath: 'docs/xlsx-import'},
{to: '/docs/exceljs/', position: 'right', label: 'ExcelJS', activeBasePath: 'docs/exceljs'},
],
},
footer: {
links: [
{
title: 'Docs',
items: [
{label: 'Documentation', to: '/docs/'},
{label: '➔ XLSX-Renderer', to: '/docs/xlsx-renderer'},
{label: '➔ XLSX-Import', to: '/docs/xlsx-import'},
{label: '➔ ExcelJS', href: '/docs/exceljs'},
],
},
{
title: 'Links',
items: [
{label: 'Releases', to: '/blog/tags/release'},
{label: 'Sponsoring', href: 'https://github.com/sponsors/siemienik'},
{label: 'GitHub Exceljs', href: 'https://github.com/exceljs/exceljs'},
{label: 'Github XToolset', href: 'https://github.com/siemienik/xtoolset'},
],
},
{
items: [
{html: '<a href="https://discord.gg/siema"><img src="https://discordapp.com/api/guilds/976854442009825321/widget.png?style=banner1" alt="Discord server"></a>'}
]
}
],
copyright: `Copyright © ${new Date().getFullYear()} Siemienik Paweł. <br/> Content licensed on <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/siemienik/siemienik.github.io/edit/master/',
},
blog: {
showReadingTime: true,
editUrl: 'https://github.com/siemienik/siemienik.github.io/edit/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};