docs: address review feedback on route refs, typos, and installation steps

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-04-04 16:15:01 +02:00
parent fb571af4ee
commit 7f6b88783b
4 changed files with 26 additions and 6 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ Please be aware that the version requirement could change, you need to check our
On a Debian-based Docker container, Python packages must be either installed using the OS package manager or within a virtual environment (see the [related PEP](https://peps.python.org/pep-0668/)). Alternative is to use e.g. [pipx](https://pypa.github.io/pipx/) for installing Python packages in an isolated environment.
The above Dockerfile snippet installs the latest `mkdocs-techdoc-core` package. Version numbers can be found in the corresponding [changelog](https://github.com/backstage/mkdocs-techdocs-core#changelog). In case you want to pin the version, use the example below:
The above Dockerfile snippet installs the latest `mkdocs-techdocs-core` package. Version numbers can be found in the corresponding [changelog](https://github.com/backstage/mkdocs-techdocs-core#changelog). In case you want to pin the version, use the example below:
```Dockerfile
RUN pip3 install mkdocs-techdocs-core==1.2.3
+5 -2
View File
@@ -138,8 +138,11 @@ export default techdocsPlugin.withOverrides({
PageBlueprint.make({
params: {
path: '/docs',
loader: () =>
import('./CustomTechDocsHome').then(m => <m.CustomTechDocsHome />),
routeRef: techdocsPlugin.routes.root,
loader: async () => {
const { CustomTechDocsHome } = await import('./CustomTechDocsHome');
return <CustomTechDocsHome />;
},
},
}),
],