mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-28 21:09:19 +00:00
- Add complete configuration reference (complete-config.mdx) with detailed parameter documentation, examples, and descriptions for all config.yaml options - Add user guide (user-guide.mdx) explaining hostname resolution, 'My IP' feature, query types, and troubleshooting for end users - Add quick-start configuration examples (quick-start.mdx) with 8 real-world scenarios: minimal, corporate, privacy-focused, high-performance, ISP, enterprise, development, and monitoring setups - Update navigation structure (_meta.tsx files) to integrate new documentation sections - Provide comprehensive coverage of DNS-over-HTTPS hostname resolution, myip.wtf IP detection, web UI customization, logging/webhooks, structured output, and theme configuration - Include practical examples, use cases, troubleshooting tips, and best practices throughout This addresses documentation gaps by providing both technical reference material for administrators and user-focused guidance for end users, with extensive real-world configuration examples.
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
export default {
|
|
index: { title: "Introduction", theme: { breadcrumb: false } },
|
|
"---": {
|
|
type: "separator",
|
|
},
|
|
"user-guide": "User Guide",
|
|
installation: "Installation",
|
|
configuration: "Configuration",
|
|
platforms: "Platforms",
|
|
plugins: "Plugins",
|
|
documentation: {
|
|
title: "Documentation",
|
|
type: "menu",
|
|
items: {
|
|
installation: {
|
|
title: "Installation",
|
|
href: "/installation",
|
|
},
|
|
configuration: {
|
|
title: "Configuration",
|
|
href: "/configuration",
|
|
},
|
|
plugins: {
|
|
title: "Plugins",
|
|
href: "/plugins",
|
|
},
|
|
changelog: {
|
|
title: "Changelog",
|
|
href: "/changelog",
|
|
},
|
|
license: {
|
|
title: "License",
|
|
href: "/license",
|
|
},
|
|
},
|
|
},
|
|
demo: {
|
|
title: "Demo",
|
|
type: "page",
|
|
href: "https://demo.hyperglass.dev",
|
|
newWindow: true,
|
|
},
|
|
};
|