diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 0b91f8b3a..157495260 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -12,6 +12,12 @@ export default defineConfig({ search: { provider: "local", }, + nav: [ + { + text: "Documentation", + link: '/about/introduction' + } + ], sidebar: [ { text: "About", @@ -47,6 +53,7 @@ export default defineConfig({ ], }, ], + socialLinks: [ { icon: "github", link: "https://github.com/Snowiiii/Pumpkin" }, diff --git a/docs/config/advanced.md b/docs/config/advanced.md index 3848bc9d0..432219d25 100644 --- a/docs/config/advanced.md +++ b/docs/config/advanced.md @@ -429,3 +429,22 @@ Should the timestamp be printed in the message ```toml timestamp=true ``` + +## Query + +### Enabled + +Should clients be able to query the server for info, using the query protocol? + +```toml +enabled=true +``` + +### Port (optional) + +If enabled, what port should the server listen to for query requests? + +```toml +# By default query will listen on the same port the server is running on +port=25565 +```