Skip to content

Commit

Permalink
Add navigation bar (#228)
Browse files Browse the repository at this point in the history
Document new config options for query
  • Loading branch information
neeleshpoli authored Nov 5, 2024
1 parent 0a50193 commit 34c75e7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ export default defineConfig({
search: {
provider: "local",
},
nav: [
{
text: "Documentation",
link: '/about/introduction'
}
],
sidebar: [
{
text: "About",
Expand Down Expand Up @@ -47,6 +53,7 @@ export default defineConfig({
],
},
],


socialLinks: [
{ icon: "github", link: "https://github.com/Snowiiii/Pumpkin" },
Expand Down
19 changes: 19 additions & 0 deletions docs/config/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 34c75e7

Please sign in to comment.