diff --git a/.changeset/cuddly-suits-agree.md b/.changeset/cuddly-suits-agree.md new file mode 100644 index 0000000000..a82ac8fd44 --- /dev/null +++ b/.changeset/cuddly-suits-agree.md @@ -0,0 +1,14 @@ +--- +'@backstage/frontend-plugin-api': patch +--- + +Deprecate the `id` in `createFrontendPlugin` in favour of `pluginId` to match the same as the backend. + +```ts +const myPlugin = createFrontendPlugin({ + pluginId: 'my-plugin', + extensions: [ + ... + ] +}); +```