From 12f801e3dc140c6a974fa84595371db6d0af84cf Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Wed, 24 Jan 2018 19:32:56 +0000 Subject: [PATCH] fix(aio): add missing leading slash on firebase redirect (#21761) PR Close #21761 --- aio/firebase.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/firebase.json b/aio/firebase.json index 070ca52f29..1f416d5319 100644 --- a/aio/firebase.json +++ b/aio/firebase.json @@ -13,7 +13,7 @@ ////////////////////////////////////////////////////////////////////////////////////////////// // A random bad indexed page that used `api/api` - {"type": 301, "source": "/api/api/:rest*", "destination": "api/:rest"}, + {"type": 301, "source": "/api/api/:rest*", "destination": "/api/:rest"}, // Guide renames {"type": 301, "source": "/docs/*/latest/cli-quickstart.html", "destination": "/guide/quickstart"},