Files
CMLeonOS/docs/cmleonos/docs/.vuepress/config.js

20 lines
562 B
JavaScript
Raw Normal View History

2026-02-04 15:32:13 +08:00
import { defaultTheme } from '@vuepress/theme-default'
import { defineUserConfig } from 'vuepress'
import { viteBundler } from '@vuepress/bundler-vite'
export default defineUserConfig({
lang: 'zh-CN',
title: 'CMLeonOS官方文档站',
description: 'CMLeonOS是一个基于微内核架构的操作系统它的目标是提供一个简单、可靠、安全的操作系统环境。',
theme: defaultTheme({
// logo: 'https://vuejs.press/images/hero.png',
2026-02-05 22:00:33 +08:00
navbar: ['/', '/get-started', '/lua', '/commands'],
2026-02-04 15:32:13 +08:00
}),
bundler: viteBundler(),
})