-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig.ts
More file actions
47 lines (35 loc) · 860 Bytes
/
config.ts
File metadata and controls
47 lines (35 loc) · 860 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
42
43
44
45
46
47
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";
import sidebar from "./sidebar.js";
import { markdownTabPlugin } from '@vuepress/plugin-markdown-tab'
export default defineUserConfig({
lang: "en-US",
title: "PSQLPy",
description: "PSQLPy Documentation",
// bundler: viteBundler(),
theme: hopeTheme({
repo: "psqlpy-python/psqlpy",
repoLabel: "GitHub",
repoDisplay: true,
sidebar,
hostname: "https://psqlpy-python.github.io/",
markdown: {
tabs: true,
mermaid: true,
chartjs: true,
},
plugins: {
readingTime: false,
copyCode: {
showInMobile: true,
},
slimsearch: {
indexContent: true,
},
sitemap: {
changefreq: "daily",
sitemapFilename: "sitemap.xml",
},
},
}),
});