Minor Changes
-
#1255
6f3202b
Thanks @Fryuni! - Adds support for server-rendered Starlight pages.When building a project with
hybrid
orserver
output mode, a newprerender
option on Starlight config can be set tofalse
to make all Starlight pages be rendered on-demand:export default defineConfig({ output: 'server', integrations: [ starlight({ prerender: false, }), ], });
Patch Changes
-
#2242
756e85e
Thanks @delucis! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices -
#1255
6f3202b
Thanks @Fryuni! - Improves performance of computing the last updated times from Git history.Instead of executing
git
for each docs page, it is now executed twice regardless of the number of pages. -
#1255
6f3202b
Thanks @Fryuni! - Fixes last updated times on projects with customsrcDir