From 9dd717cbc598b2802b8898efc2830b59e12f2c98 Mon Sep 17 00:00:00 2001 From: Ben Lambert Date: Thu, 4 Aug 2022 10:50:36 +0200 Subject: [PATCH] Add a nice description on how to apply the change Signed-off-by: Ben Lambert Signed-off-by: Ben Lambert --- .changeset/wicked-knives-wink.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.changeset/wicked-knives-wink.md b/.changeset/wicked-knives-wink.md index 070e7709a9..b238be331b 100644 --- a/.changeset/wicked-knives-wink.md +++ b/.changeset/wicked-knives-wink.md @@ -3,3 +3,13 @@ --- Add `PATCH` and `HEAD` to the `Access-Control-Allow-Methods`. + + +To apply this change to your Backstage installation make the following change to your `app-config.yaml` + +```diff + cors: + origin: http://localhost:3000 +- methods: [GET, POST, PUT, DELETE] ++ methods: [GET, POST, PUT, DELETE, PATCH, HEAD] +```