From 5b3e6d7b10207d649fc94b058b7bd12e4dc69d26 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 12 Jul 2024 21:59:19 +0200 Subject: [PATCH] Create en.mjs config --- docs/.vitepress/config/en.mjs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/.vitepress/config/en.mjs diff --git a/docs/.vitepress/config/en.mjs b/docs/.vitepress/config/en.mjs new file mode 100644 index 00000000..80242a48 --- /dev/null +++ b/docs/.vitepress/config/en.mjs @@ -0,0 +1,32 @@ +import { defineConfig } from 'vitepress' + +export const en = defineConfig({ + lang: "en-US", + description: "MySpeed is a self-hosted speedtest analysis software that stores the speed of your internet for up to 30 days.", + themeConfig: { + nav: [ + { text: 'Frequently Asked Questions', link: 'faq' }, + { + text: 'Setup', + items: [ + { text: 'Linux', link: 'setup/linux' }, + { text: 'Windows', link: 'setup/windows' } + ] + }, + { + text: 'Guides', + items: [ + { text: 'Configuring a Reverse Proxy', link: 'guides/reverse-proxy' } + ] + }, + { text: 'Troubleshooting', link: 'troubleshooting' }, + { + text: 'Instructions', + items: [ + { text: 'The Interface', link: 'instructions/main' }, + { text: 'Settings', link: 'instructions/settings' } + ] + } + ] + }, +})