[Docs] Fix relative paths to code (#1662)

* [Docs] Fix relative paths to code

* Update create-a-plugin.md

* Link to existing plugins

* Update README.md

* Update README.md

* Review edits
This commit is contained in:
Stefan Ålund
2020-07-16 09:17:43 +02:00
committed by GitHub
parent 0ea6125479
commit ce30c43d24
14 changed files with 46 additions and 28 deletions
+5 -6
View File
@@ -14,13 +14,13 @@ To run it within the backend do:
1. Register the router in `packages/backend/src/index.ts`:
```
```ts
const proxyEnv = useHotMemoize(module, () => createEnv('proxy'));
const service = createServiceBuilder(module)
.loadConfig(configReader)
/** several different routers */
.addRouter('/', await proxy(proxyEnv));
.loadConfig(configReader)
/** several different routers */
.addRouter('/', await proxy(proxyEnv));
```
2. Start the backend
@@ -33,5 +33,4 @@ This will launch the full example backend.
## Links
- (http-proxy-middleware)[https://www.npmjs.com/package/http-proxy-middleware]
- (The Backstage homepage)[https://backstage.io]
- [http-proxy-middleware](https://www.npmjs.com/package/http-proxy-middleware)