We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f3dbd6 commit 96713e0Copy full SHA for 96713e0
.vuepress/config.js
@@ -42,6 +42,10 @@ module.exports = {
42
editLinks: true,
43
logo: '/logos/pterry.svg',
44
nav: [
45
+ {
46
+ text: 'Eggs',
47
+ link: 'https://eggs.pterodactyl.io/',
48
+ },
49
{
50
text: 'Documentation',
51
link: '/project/introduction.md',
.vuepress/theme/util.js
@@ -17,6 +17,9 @@ export function getHash(path) {
17
}
18
19
export function isExternal(path) {
20
+ if (/https?:\/\/([^\/]*\.)?pterodactyl\.io/.test(path)) {
21
+ return false
22
+ }
23
return outboundRE.test(path)
24
25
0 commit comments