-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknowledge.config.ts
More file actions
47 lines (39 loc) · 1.09 KB
/
knowledge.config.ts
File metadata and controls
47 lines (39 loc) · 1.09 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
import type { KnowledgeConfig } from './src/config.js';
export default {
inputDir: './docs',
outputDir: './dist',
templatesDir: './templates',
themesDir: './themes',
site: {
title: 'Documentation',
description: 'A modern, open-source documentation platform that transforms how teams create, organize, and share knowledge.',
baseUrl: '/',
author: 'Ciro Cesar Maciel'
},
theme: 'default',
layout: 'default',
navigation: {
auto: true
},
features: {
search: true,
syntaxHighlight: true,
darkMode: true,
tableOfContents: true,
breadcrumbs: true,
editOnGithub: 'https://github.com/riligar/documentation'
},
analytics: {
script: '<script defer src="https://analytics.riligar.click/script.js" data-website-id="02351e3d-4e59-4c69-8e6d-5624abdff94e"></script>'
},
markdown: {
breaks: true,
linkify: true,
typographer: true
},
dev: {
port: 3000,
host: 'localhost',
livereload: true
}
} as KnowledgeConfig;