From 695196600444e3ad73132c7c1ba083c6f38524a1 Mon Sep 17 00:00:00 2001 From: Jonathan Roebuck Date: Wed, 12 Jul 2023 09:30:48 +0100 Subject: [PATCH] Update plugins/lighthouse-backend/README.md tidy up example code in README Co-authored-by: Patrik Oldsberg Signed-off-by: Jonathan Roebuck --- plugins/lighthouse-backend/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/lighthouse-backend/README.md b/plugins/lighthouse-backend/README.md index c65ec75b75..28845d3c73 100644 --- a/plugins/lighthouse-backend/README.md +++ b/plugins/lighthouse-backend/README.md @@ -69,9 +69,7 @@ In your `packages/backend/src/index.ts` make the following changes: + import { lighthousePlugin } from '@backstage/plugin-lighthouse-backend'; const backend = createBackend(); // ... other feature additions -+ backend.add( -+ lighthousePlugin(), -+ ); ++ backend.add(lighthousePlugin()); backend.start(); ```