From 72192d847b3647ce899ddf77c89040a65137814d Mon Sep 17 00:00:00 2001 From: Oliver Sand Date: Thu, 25 Mar 2021 15:56:49 +0100 Subject: [PATCH] Improve documentation `defaultPageTheme` is a required field. Signed-off-by: Oliver Sand --- docs/getting-started/app-custom-theme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/getting-started/app-custom-theme.md b/docs/getting-started/app-custom-theme.md index 79cd405198..345b7ad969 100644 --- a/docs/getting-started/app-custom-theme.md +++ b/docs/getting-started/app-custom-theme.md @@ -27,6 +27,7 @@ import { createTheme, lightTheme } from '@backstage/theme'; const myTheme = createTheme({ palette: lightTheme.palette, fontFamily: 'Comic Sans MS', + defaultPageTheme: 'home', }); ```