From fc5b4c9aab047daa99053e5c34a8190244a379d3 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 6 May 2025 12:53:06 +0100 Subject: [PATCH] Export root route for home page Signed-off-by: Daniel --- plugins/home/src/alpha.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/home/src/alpha.tsx b/plugins/home/src/alpha.tsx index 74f96a2195..04d612ef1c 100644 --- a/plugins/home/src/alpha.tsx +++ b/plugins/home/src/alpha.tsx @@ -69,4 +69,7 @@ const homePage = PageBlueprint.makeWithOverrides({ export default createFrontendPlugin({ pluginId: 'home', extensions: [homePage], + routes: { + root: rootRouteRef, + }, });