Files
homepage/rspress.config.ts
T
siujamo 7de2a54f7f
Deploy to Vercel / deploy (push) Successful in 1m39s
docs: update git repo url
2026-06-08 16:25:06 +08:00

45 lines
922 B
TypeScript

import * as path from "node:path"
import { defineConfig } from "@rspress/core"
export default defineConfig({
root: path.join(__dirname, "docs"),
title: "OnixByte",
icon: "/onixbyte-icon.svg",
logo: {
light: "/onixbyte-light-logo.svg",
dark: "/onixbyte-dark-logo.svg",
},
themeConfig: {
socialLinks: [
{
icon: "github",
mode: "link",
content: "https://git.onixbyte.com/onixbyte/homepage",
},
{
icon: "x",
mode: "link",
content: "https://x.com/onixbyte",
},
],
},
markdown: {
showLineNumbers: true,
},
lang: "en-gb",
locales: [
{
lang: "en-gb",
label: "English (Great Britain)",
title: "OnixByte",
description: "OnixByte Official",
},
{
lang: "zh-hans",
label: "简体中文",
title: "OnixByte",
description: "OnixByte 官方站点",
},
],
})