23 lines
704 B
TypeScript
23 lines
704 B
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export default defineConfig({
|
|
title: 'NexusGuard Docs',
|
|
description: 'Enterprise Zero-Trust SD-WAN Documentation',
|
|
cleanUrls: true,
|
|
themeConfig: {
|
|
sidebar: [
|
|
{
|
|
text: 'Guides',
|
|
items: [
|
|
{ text: 'Sign In', link: '/guides/sign-in' },
|
|
{ text: 'Access Remote Server', link: '/guides/access-remote-server' },
|
|
{ text: 'Add WireGuard Configuration', link: '/guides/add-wireguard-configuration' },
|
|
{ text: 'Peers', link: '/guides/peers' },
|
|
{ text: 'Email Service', link: '/guides/email-service' },
|
|
{ text: 'WebHooks', link: '/guides/webhooks' },
|
|
]
|
|
}
|
|
]
|
|
}
|
|
})
|