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]}`,