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(); ```