From 2c525f85e7189f8fcd2fd9807a516f7ebbf76b0a Mon Sep 17 00:00:00 2001 From: Alexander Zerbe Date: Sun, 21 Mar 2021 11:40:43 +0100 Subject: [PATCH] adds changeset Signed-off-by: Alexander Zerbe --- .changeset/curly-fishes-speak.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/curly-fishes-speak.md diff --git a/.changeset/curly-fishes-speak.md b/.changeset/curly-fishes-speak.md new file mode 100644 index 0000000000..42f395ca30 --- /dev/null +++ b/.changeset/curly-fishes-speak.md @@ -0,0 +1,11 @@ +--- +'@backstage/create-app': patch +--- + +(fix) Adds locationAnalyzer to default-app template + +The locationAnalyzer was missing from the default-app template. +This resulted in 404 errors for newly bootstraped backstage applications, when adding components without configuration. + +To fix this in an existing backstage application, the locationAnalyzer needs to be added to the `packages/backend/src/plugins/catalog.ts` file. +Check out `/backstage/packages/create-app/templates/default-app/packages/backend/src/plugins/catalog.ts` for reference.