From 0f28033a9d78d2317acacc954d445371c6c290d6 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 13 Sep 2021 16:47:33 -0500 Subject: [PATCH] Add `astro.build/play` link (#1359) * feat: add rewrite to play.astro.build * fix: subpath redirects --- www/vercel.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/www/vercel.json b/www/vercel.json index 123569e34d..39581473d2 100644 --- a/www/vercel.json +++ b/www/vercel.json @@ -16,5 +16,11 @@ "source": "/chat", "destination": "https://discord.gg/grF4GTXXYm" } + ], + "rewrites": [ + { + "source": "/play/:match*", + "destination": "https://play.astro.build/play/:match*" + } ] }