doc(create-app):enhance changelog for create-app settings routing

This commit is contained in:
Kiran Patel
2021-01-16 12:08:46 +11:00
parent 5899e5ca3a
commit 26d3b24f3f
2 changed files with 19 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
---
'@backstage/create-app': patch
---
fix routing and config for user-settings plugin
To make the corresponding change in your local app, add the following in your App.tsx
```
import { Router as SettingsRouter } from '@backstage/plugin-user-settings';
...
<Route path="/settings" element={<SettingsRouter />} />
```
and the following to your plugins.ts:
```
export { plugin as UserSettings } from '@backstage/plugin-user-settings';
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
fix routing and config for user-settings plugin