mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-21 14:13:36 +08:00
project init
This commit is contained in:
43
doc/docs/.vitepress/config.js
Normal file
43
doc/docs/.vitepress/config.js
Normal file
@@ -0,0 +1,43 @@
|
||||
const config = {
|
||||
title: '简约而不简单的文档',
|
||||
themeConfig: {
|
||||
repo: 'https://github.com/xiaoxian521',
|
||||
docsDir: 'docs',
|
||||
locales: {
|
||||
'/': {
|
||||
lang: 'zh-CN',
|
||||
nav: [
|
||||
{ text: '书写规范', link: '/zh/standard/' },
|
||||
],
|
||||
sidebar: [
|
||||
{
|
||||
text: '简介',
|
||||
children: [
|
||||
{ text: '项目描述', link: '/zh/introduction/description' },
|
||||
{ text: '开源精神', link: '/zh/introduction/openSource' },
|
||||
{ text: '贡献者', link: '/zh/introduction/contributor' },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
'/en/': {
|
||||
lang: 'en-US',
|
||||
nav: [
|
||||
{ text: 'Standard', link: '/en/standard/' },
|
||||
],
|
||||
sidebar: [
|
||||
{
|
||||
text: 'introduction',
|
||||
children: [
|
||||
{ text: 'description', link: '/en/introduction/description' },
|
||||
{ text: 'openSource', link: '/en/introduction/openSource' },
|
||||
{ text: 'contributor', link: '/en/introduction/contributor' },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = config
|
||||
Reference in New Issue
Block a user