Files
SnapOtter/apps/docs/.vitepress/theme/index.ts
T
Siddharth Kumar Sah 47adfde5cb feat: add GitHub stars button to docs navbar and fix footer license
Add a star button with live count from the GitHub API in the top-right
of the docs site. Fix footer from "MIT License" to "AGPLv3 License".
2026-04-03 23:14:37 +08:00

9 lines
164 B
TypeScript

import DefaultTheme from "vitepress/theme";
import Layout from "./Layout.vue";
import "./github-stars.css";
export default {
extends: DefaultTheme,
Layout,
};