From 095f44a18489b628d72f8d614bb6ef0bd893086c Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 27 Jan 2026 16:39:54 +0100 Subject: [PATCH] microsite: make references header item a dropdown for stable/next Signed-off-by: Patrik Oldsberg --- microsite/docusaurus.config.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/microsite/docusaurus.config.ts b/microsite/docusaurus.config.ts index 5ea0ddbb30..b1f17b8d57 100644 --- a/microsite/docusaurus.config.ts +++ b/microsite/docusaurus.config.ts @@ -377,9 +377,19 @@ const config: Config = { position: 'left', }, { - to: '/api/stable', + type: 'dropdown', label: 'Reference', position: 'left', + items: [ + { + label: `Stable (${releases[0]})`, + to: '/api/stable', + }, + { + label: 'Next', + to: '/api/next', + }, + ], }, { to: `docs/releases/${releases[0]}`,