mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-10 00:09:39 -06:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
module.exports = {
|
|
base: '/docs/',
|
|
title: 'Pterodactyl Documentation',
|
|
description: 'Leanr how to install and use Pterodactyl.',
|
|
themeConfig: {
|
|
repo: 'pterodactyl/panel',
|
|
docsRepo: 'pterodactyl/documentation',
|
|
repoLabel: 'Contribute',
|
|
editLinkText: 'Help us improve this page.',
|
|
editLinks: true,
|
|
nav: [
|
|
{
|
|
text: 'Get Started',
|
|
link: '/panel/server_requirements/',
|
|
},
|
|
{
|
|
text: 'API Reference',
|
|
link: '/api/'
|
|
},
|
|
{
|
|
text: 'Get Help',
|
|
link: 'https://pterodactyl.io/discord'
|
|
}
|
|
],
|
|
sidebar: [
|
|
{
|
|
title: 'Project Information',
|
|
collapsable: false,
|
|
children: [
|
|
'/',
|
|
]
|
|
},
|
|
{
|
|
title: 'Panel',
|
|
collapsable: false,
|
|
children: [
|
|
'/panel/getting_started',
|
|
'/panel/downloading',
|
|
]
|
|
},
|
|
{
|
|
title: 'Daemon',
|
|
collapsable: true,
|
|
children: [
|
|
'/',
|
|
]
|
|
},
|
|
{
|
|
title: 'API Reference',
|
|
collapsable: true,
|
|
children: [
|
|
'/',
|
|
]
|
|
}
|
|
]
|
|
}
|
|
};
|