-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
53 lines (53 loc) · 1.29 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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: "Job Portal",
tagline: "Jobs at your fingertips",
url: "https://github.com/nab-in",
baseUrl: "/portal-docs/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "nab-in",
projectName: "portal-docs",
themeConfig: {
navbar: {
title: "Job Portal",
logo: {
alt: "My Site Logo",
src: "img/logo.svg",
},
items: [
{
type: "doc",
docId: "intro",
position: "left",
label: "API",
},
// { to: "/blog", label: "Blog", position: "left" },
{
href: "https://github.com/nab-in/portal-docs/",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
copyright: `Copyright © ${Number(new Date().getFullYear())} (We Code Together) with ❣️.`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/nab-in/portal-docs/edit/develop/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};