Address remaining docs review feedback

Clarify the remaining old frontend system sections, tighten the scaffolder follow-up wording, and rename the docs sidebar entry to match the frontend system terminology used elsewhere.

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-03-16 19:44:44 +01:00
parent 98b6b9701b
commit 90a02779fa
5 changed files with 23 additions and 10 deletions
+5 -4
View File
@@ -25,9 +25,9 @@ Once installed, the plugin is automatically available in your app through the de
### Troubleshooting
If you encounter [issues with early closure of the `EventStream`](https://github.com/backstage/backstage/issues/5535)
which auto-updates logs during task execution, you can enable long polling. To do so,
update your `packages/app/src/apis.ts` file to register a `ScaffolderClient` with the
`useLongPollingLogs` set to `true`. By default, it is `false`.
used to auto-update logs during task execution, you can work around them by enabling
long polling. To do so, update your `packages/app/src/apis.ts` file to register a
`ScaffolderClient` with `useLongPollingLogs` set to `true`. By default, it is `false`.
```typescript
import {
@@ -74,7 +74,8 @@ to launch the plugin locally using the `createDevApp` of the `./dev/index.tsx` f
To play with it, open a terminal and run the command: `yarn start` within the `./plugins/scaffolder` folder
**NOTE:** Don't forget to open a second terminal and to launch the backend there, using `yarn start backend` and to specify the locations of the templates to play with!
**NOTE:** Don't forget to open a second terminal, start your Backstage backend there,
and configure the template locations that you want to test.
## Old Frontend System