This repository has been archived on 2026-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mcp-uni-docs/rspress.config.ts
Sun-ZhenXing 9b1173edaa init repo
2025-12-18 23:28:42 +08:00

22 lines
465 B
TypeScript

import * as path from 'node:path';
import { defineConfig } from 'rspress/config';
export default defineConfig({
root: path.join(__dirname, 'docs'),
title: 'My Site',
icon: '/rspress-icon.png',
logo: {
light: '/rspress-light-logo.png',
dark: '/rspress-dark-logo.png',
},
themeConfig: {
socialLinks: [
{
icon: 'github',
mode: 'link',
content: 'https://github.com/web-infra-dev/rspress',
},
],
},
});