diff --git a/docs/features/techdocs/getting-started.md b/docs/features/techdocs/getting-started.md index 71852302e2..bf55c90af9 100644 --- a/docs/features/techdocs/getting-started.md +++ b/docs/features/techdocs/getting-started.md @@ -213,7 +213,7 @@ const backend = createBackend(); // Other plugins... /* highlight-add-start */ -backend.add(import('@backstage/plugin-search-backend-module-catalog/alpha')); +backend.add(import('@backstage/plugin-techdocs-backend/alpha')); /* highlight-add-end */ backend.start(); diff --git a/docs/features/techdocs/how-to-guides.md b/docs/features/techdocs/how-to-guides.md index a370ba5d97..b25c2a3928 100644 --- a/docs/features/techdocs/how-to-guides.md +++ b/docs/features/techdocs/how-to-guides.md @@ -734,7 +734,7 @@ import { techdocsBuildsExtensionPoint, } from '@backstage/plugin-techdocs-node'; -const techdocsCustomerBuildStrategy = createBackendModule({ +const techdocsCustomBuildStrategy = createBackendModule({ pluginId: 'techdocs', moduleId: 'customBuildStrategy', register(env) { @@ -759,11 +759,11 @@ const techdocsCustomerBuildStrategy = createBackendModule({ // Other plugins... /* highlight-add-start */ -backend.add(import('@backstage/plugin-search-backend-module-catalog/alpha')); -backend.add(); +backend.add(import('@backstage/plugin-techdocs-backend/alpha')); +backend.add(techdocsCustomBuildStrategy()); /* highlight-add-end */ -backend.start(techdocsCustomerBuildStrategy()); +backend.start(); ``` > Note: You may need to add the `@backstage/plugin-techdocs-node` package to your backend `package.json` if it's not been imported already.