mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
20 lines
562 B
JavaScript
20 lines
562 B
JavaScript
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',
|
||
navbar: ['/', '/get-started', '/lua', '/commands'],
|
||
}),
|
||
|
||
|
||
|
||
bundler: viteBundler(),
|
||
})
|