Create en.mjs config

This commit is contained in:
Mathias Wagner
2024-07-12 21:59:19 +02:00
parent 5ac38b37c3
commit 5b3e6d7b10

View File

@@ -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' }
]
}
]
},
})