Added stub for API
This commit is contained in:
parent
0488a870ef
commit
93bbb5751e
2 changed files with 6 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
node_modules
|
node_modules
|
||||||
.vitepress/dist
|
.vitepress/dist
|
||||||
|
api
|
||||||
|
|
|
@ -14,11 +14,13 @@ module.exports = {
|
||||||
lastUpdated: 'Last Updated',
|
lastUpdated: 'Last Updated',
|
||||||
nav: [
|
nav: [
|
||||||
{ text: "Guide", link: "/guide/", activeMatch: "^/guide/" },
|
{ text: "Guide", link: "/guide/", activeMatch: "^/guide/" },
|
||||||
|
{ text: "API", link: "/api/", activeMatch: "^/api/" },
|
||||||
{ text: "Forums", link: "https://forums.moddingtree.com" },
|
{ text: "Forums", link: "https://forums.moddingtree.com" },
|
||||||
{ text: "Discord", link: "https://discord.gg/F3xveHV" },
|
{ text: "Discord", link: "https://discord.gg/F3xveHV" },
|
||||||
{ text: "Github", link: "https://github.com/profectus-engine/Profectus" }
|
{ text: "Github", link: "https://github.com/profectus-engine/Profectus" }
|
||||||
],
|
],
|
||||||
sidebar: [
|
sidebar: {
|
||||||
|
"/guide/": [
|
||||||
{
|
{
|
||||||
text: "Guide",
|
text: "Guide",
|
||||||
children: [
|
children: [
|
||||||
|
@ -30,6 +32,7 @@ module.exports = {
|
||||||
text: "Creating Features",
|
text: "Creating Features",
|
||||||
children: []
|
children: []
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue