DR-docs/rspress.config.ts

27 lines
787 B
TypeScript
Raw Normal View History

2023-12-16 23:40:38 +08:00
import * as path from 'path';
import { defineConfig } from 'rspress/config';
export default defineConfig({
2023-12-31 03:20:20 +08:00
root: path.join(__dirname, 'docs'),
title: 'Difficult-Rocket-docs',
description: 'Diffuclt Rocket 的文档',
icon: "/icon.png",
logo: "/icon.png",
themeConfig: {
socialLinks: [
{ icon: 'github', mode: 'link', content: 'https://github.com/shenjackyuanjie/DR-docs' },
{ icon: 'github', mode: 'link', content: 'https://github.com/shenjackyuanjie/Difficult-Rocket' },
],
lastUpdated: true,
lastUpdatedText: "最后更新时间",
},
markdown: {
highlightLanguages: [
['py', 'python'],
'python',
['cfg', 'ini'],
'toml',
]
}
2023-12-16 23:40:38 +08:00
});