mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import {LocaleSpecificConfig, DefaultTheme} from "vitepress"
|
|
|
|
export const enConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
|
|
themeConfig: {
|
|
nav: [
|
|
{text: 'Home', link: '/'},
|
|
{text: 'Guide', link: '/guide/about'},
|
|
{text: 'Demo', link: 'https://demo.nginxui.com'}
|
|
],
|
|
|
|
sidebar: {
|
|
'/guide/': [
|
|
{
|
|
text: 'Introduction',
|
|
collapsed: false,
|
|
items: [
|
|
{text: 'What is Nginx UI?', link: '/guide/about'},
|
|
{text: 'Getting Started', link: '/guide/getting-started'},
|
|
{text: 'Nginx Proxy Example', link: '/guide/nginx-proxy-example'},
|
|
{text: 'Contributing', link: '/guide/contributing'},
|
|
{text: 'License', link: '/guide/license'}
|
|
]
|
|
},
|
|
{
|
|
text: 'Configuration',
|
|
collapsed: false,
|
|
items: [
|
|
{text: 'Server', link: '/guide/config-server'},
|
|
{text: 'Nginx Log', link: '/guide/config-nginx-log'},
|
|
{text: 'Open AI', link: '/guide/config-openai'}
|
|
]
|
|
}
|
|
],
|
|
},
|
|
}
|
|
}
|