forked from alauda/knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoom.config.ts
More file actions
25 lines (24 loc) · 742 Bytes
/
doom.config.ts
File metadata and controls
25 lines (24 loc) · 742 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
import { defineConfig } from "@alauda/doom/config";
import { join } from "node:path";
import { blogPostResolver } from "./plugins/plugin-post-resolver";
export default defineConfig({
title: "Alauda Knowledge",
base: "/knowledge/",
description:
"Welcome to Alauda's Knowledgebase information center. Find resources for resolving problems and troubleshooting.",
logo: "/logo.svg",
logoText: "Alauda Knowledge",
globalStyles: join(__dirname, "styles/index.css"),
plugins: [
blogPostResolver({
postsDir: join(__dirname, "docs"),
}),
],
themeConfig: {
darkMode: false,
lastUpdated: true,
footer: {
message: "© 2025 Alauda Inc. All Rights Reserved.",
},
},
});