From 0541108e1d2955c2b50b848afdf39ca16a388de4 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 21 Apr 2026 17:29:08 +0200 Subject: [PATCH] feat: redirect /docs and /docs/references Signed-off-by: David Dal Busco --- juno.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/juno.config.ts b/juno.config.ts index 15a4762d..fd06b5cf 100644 --- a/juno.config.ts +++ b/juno.config.ts @@ -254,6 +254,16 @@ const redirects: StorageConfigRedirect[] = [ source: "/docs/category/clients", location: "/docs/category/frontend", code: 301 + }, + { + source: "/docs/references", + location: "/docs/reference/cli", + code: 301 + }, + { + source: "/docs", + location: "/docs/intro", + code: 301 } ];