docs: add version label to navbar (#186)

Co-authored-by: Elias Schneider <login@eliasschneider.com>
This commit is contained in:
Kyle Mendell
2025-01-28 15:19:16 -06:00
committed by GitHub
parent 77985800ae
commit b530d646ac
2 changed files with 33 additions and 1 deletions

View File

@@ -47,6 +47,12 @@ const config: Config = {
src: "img/pocket-id.png",
},
items: [
// Version gets replaced by the version-label.ts script
{
to: "#version",
label: " ",
position: "right",
},
{
href: "https://github.com/stonith404/pocket-id",
label: "GitHub",
@@ -59,6 +65,9 @@ const config: Config = {
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
clientModules: [
require.resolve('./src/version-label.ts'),
],
};
export default config;