chore: update .gitignore, add docs site, plan docs

This commit is contained in:
datadunia
2026-05-23 04:16:13 +07:00
parent 92051d5fb4
commit 64e29609b3
17 changed files with 1568 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
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' },
]
}
]
}
})