From 2cc931ed2ac945eb34917b5cf980849d7f69a167 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Thu, 15 Jun 2017 20:24:45 +0300 Subject: [PATCH] fix(aio): add missing redirect rule for `/styleguide` Fixes #17542 --- aio/firebase.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aio/firebase.json b/aio/firebase.json index ee6cb3f481..0b2c2232be 100644 --- a/aio/firebase.json +++ b/aio/firebase.json @@ -6,12 +6,13 @@ "public": "dist", "cleanUrls": true, "redirects": [ - // cli-quickstart.html glossary.html, quickstart.html, http.html, style-guide.html + // cli-quickstart.html glossary.html, quickstart.html, http.html, style-guide.html, styleguide {"type": 301, "source": "/docs/ts/latest/cli-quickstart.html", "destination": "/guide/cli-quickstart"}, {"type": 301, "source": "/docs/ts/latest/glossary.html", "destination": "/guide/glossary"}, {"type": 301, "source": "/docs/ts/latest/quickstart.html", "destination": "/guide/quickstart"}, {"type": 301, "source": "/docs/ts/latest/guide/server-communication.html", "destination": "/guide/http"}, - {"type": 301, "source": "/docs/ts/latest/guide/style-guide.html", "destination": "/guide/styleguide"}, + {"type": 301, "source": "/docs/ts/latest/guide/style-guide.html", "destination": "/guide/styleguide"}, + {"type": 301, "source": "/styleguide", "destination": "/guide/styleguide"}, // cookbook/component-communication.html {"type": 301, "source": "/docs/ts/latest/cookbook/component-communication.html", "destination": "/guide/component-interaction"},