From 5420e5b4c5e8cc88d45cb476904a8f082461fdc7 Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Sat, 5 Oct 2024 07:14:05 +1000 Subject: [PATCH] Fix rootConfigServiceFactory import in rootConfig docs Also I noticed clicking "edit this page" on https://backstage.io/docs/backend-system/core-services/root-config/ took me to a 404, not sure if that is a known issue or not. Signed-off-by: Tyler Davis --- docs/backend-system/core-services/root-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-system/core-services/root-config.md b/docs/backend-system/core-services/root-config.md index 8505b9e7ec..505a9f90d1 100644 --- a/docs/backend-system/core-services/root-config.md +++ b/docs/backend-system/core-services/root-config.md @@ -44,7 +44,7 @@ There's additional configuration that you can optionally pass to setup the `conf You can configure these additional options by adding an override for the core service when calling `createBackend` like follows: ```ts -import { rootConfigServiceFactory } from '@backstage/backend-app-api'; +import { rootConfigServiceFactory } from '@backstage/backend-defaults/rootConfig'; const backend = createBackend();