-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocsit.config.js
More file actions
41 lines (37 loc) · 803 Bytes
/
docsit.config.js
File metadata and controls
41 lines (37 loc) · 803 Bytes
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
/*
This is the configuration file for DocsIt.
*/
/** @type {import('.docsit/types/config').Config} */
const config = {
title: "DocsIt",
tagline: "Building a documentation website has never been easier!",
favicon: "img/favicon.ico",
logo: {
alt: "My Site Logo",
src: "/img/logo.png",
},
theme: {
navbar: {
title: "DocsIt",
/* logo: {
alt: "My Site Logo",
src: "/img/logo.png",
}, */
items: [
{
to: "docs/intro",
label: "Tutorial",
},
{
to: "https://github.com/devmuhnnad/docsit",
label: "GitHub",
newTab: true,
},
],
},
footer: {
copyright: `Copyright © ${new Date().getFullYear()} DocsIt.`,
},
},
};
export default config;