From 8785ab0ebc731fde6dbb30e88aeca749a0008100 Mon Sep 17 00:00:00 2001 From: Max Wofford Date: Tue, 24 Nov 2020 19:36:36 -0500 Subject: [PATCH] Add redirect for v1 newSingle --- vercel.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 04c77ab..494e244 100644 --- a/vercel.json +++ b/vercel.json @@ -5,6 +5,7 @@ }, "redirects": [ { "source": "/", "destination": "https://github.com/hackclub/cdn" }, - { "source": "/api/new", "destination": "/api/v1/new", "permanent": false } + { "source": "/api/new", "destination": "/api/v1/new", "permanent": false }, + { "source": "/api/newSingle", "destination": "/api/v1/newSingle", "permanent": false } ] }