From 372939d39d70734d86c7d9ed25e21d52a48708da Mon Sep 17 00:00:00 2001 From: Ayush Mukherjee Date: Thu, 21 Sep 2023 13:10:38 +0530 Subject: [PATCH] add registration redirect --- functions/register.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 functions/register.js diff --git a/functions/register.js b/functions/register.js new file mode 100644 index 0000000..bddc701 --- /dev/null +++ b/functions/register.js @@ -0,0 +1,3 @@ +export async function onRequest() { + return Response.redirect('https://www.start.gg/hub/regional-rumble/details', 301); +}