frontend-plugin-api: added noHeader param for page blueprint

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2026-02-13 13:59:04 +01:00
parent d2705be180
commit 4d2b2642c0
22 changed files with 46 additions and 9 deletions
+1
View File
@@ -200,6 +200,7 @@ const _default: OverridableFrontendPlugin<
icon?: IconElement;
loader?: () => Promise<JSX.Element>;
routeRef?: RouteRef;
noHeader?: boolean;
};
}>;
}
+1
View File
@@ -63,6 +63,7 @@ const homePage = PageBlueprint.makeWithOverrides({
factory(originalFactory, { node, inputs }) {
return originalFactory({
path: '/home',
noHeader: true,
routeRef: rootRouteRef,
loader: async () => {
const LazyDefaultLayout = reactLazy(() =>