Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.vitepress/.temp
node_modules/
.DS_Store
docs/api
7 changes: 7 additions & 0 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineConfig } from "vitepress";
import footnote from "markdown-it-footnote";
import typedocSidebar from "../docs/api/typedoc-sidebar.json";

const ogTitle = "Schooltape - A free and open source web extension for Schoolbox!";
const ogDescription = "A web extension that adds themes, plugins, and snippets to Schoolbox.";
Expand Down Expand Up @@ -104,6 +105,12 @@ export default defineConfig({
{ text: "Snippets", link: "/snippets" },
],
},
{
text: "API",
link: "/",
base: "/api",
items: typedocSidebar,
},
],

socialLinks: [
Expand Down
Loading