We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e2ae5 commit 174789bCopy full SHA for 174789b
.vitepress/config.mts
@@ -49,6 +49,11 @@ export default async () => {
49
}
50
if (sorting.includes(a.text)) return -1
51
if (sorting.includes(b.text)) return 1
52
+
53
+ // Push changelog to the bottom
54
+ if (a.text === 'Changelog') return 1
55
+ if (b.text === 'Changelog') return -1
56
57
return a.text.localeCompare(b.text)
58
}),
59
0 commit comments