Files
homepage/rspress.config.ts
T
siujamo c48cb3d8f0 feat: replace PNG logo and icon with SVG versions
Switch from rspress default branding to OnixByte custom SVG assets.
2026-05-20 02:10:05 -05:00

40 lines
820 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: "gitlab",
mode: "link",
content: "https://git.onixbyte.cn/onixbyte/homepage",
},
],
},
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 官方站点",
},
],
})