-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzudoku.config.ts
96 lines (93 loc) · 2.42 KB
/
zudoku.config.ts
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import type { ZudokuConfig } from "zudoku";
const config: ZudokuConfig = {
basePath: "/docs",
metadata: {
title: "DigiParser Docs",
applicationName: "DigiParser Docs",
description: "Documentation for DigiParser",
logo: "https://www.digiparser.com/img/logo.svg",
},
page: {
pageTitle: "DigiParser Docs",
logo: {
src: {
light: "https://www.digiparser.com/img/logo-default.png",
dark: "https://www.digiparser.com/img/logo-light.png",
},
},
},
topNavigation: [
{ id: "guides", label: "Guides" },
{ id: "api", label: "API Reference" },
],
sidebar: {
docs: [
{
type: "category",
label: "Overview",
items: [
"/guides/introduction",
"/guides/overview/parsers",
"/guides/overview/workflows",
"/guides/overview/schemas",
],
},
{
type: "category",
label: "Getting Started",
items: [
"/guides/getting-started/create-account",
"/guides/getting-started/quick-start",
"/guides/getting-started/importing-documents",
"/guides/getting-started/exporting-data",
"/guides/getting-started/customizing-schema",
"/guides/getting-started/customizing-parser",
"/guides/getting-started/integrations",
],
},
{
type: "category",
label: "Importing documents",
items: [
"/guides/importing-documents/uploading-documents",
"/guides/importing-documents/importing-from-email",
],
},
],
},
redirects: [
{ from: "/", to: "/guides/introduction" },
{ from: "/guides", to: "/guides/introduction" },
{ from: "/docs", to: "/guides/introduction" },
{ from: "/docs/guides", to: "/guides/introduction" },
],
apis: {
type: "file",
input: "./apis/openapi.yaml",
navigationId: "api",
},
docs: {
files: "/pages/**/*.{md,mdx}",
},
theme: {
light: {
primary: "243, 82%, 66%",
primaryForeground: "243, 82%, 66%",
background: "0, 0%, 100%",
foreground: "0, 0%, 0%",
},
dark: {
primary: "243, 82%, 66%",
primaryForeground: "243, 82%, 66%",
background: "0, 0%, 0%",
foreground: "0, 0%, 100%",
},
},
sitemap: {
siteUrl: "https://www.digiparser.com/docs",
changefreq: "weekly",
priority: 0.7,
autoLastmod: true,
},
};
export default config;