Merge pull request #7932 from backstage/jhaals/core-plugin-api-no-name

core-plugin-api: Deprecate use of extensions without name
This commit is contained in:
Fredrik Adelöw
2021-11-11 10:11:30 +01:00
committed by GitHub
14 changed files with 44 additions and 6 deletions
@@ -172,6 +172,7 @@ This page itself can be exported as a routable extension in the plugin:
```ts
export const CustomCatalogIndexPage = myPlugin.provide(
createRoutableExtension({
name: 'CustomCatalogIndexPage',
component: () =>
import('./components/CustomCatalogPage').then(m => m.CustomCatalogPage),
mountPoint: catalogRouteRef,