From 35fcc3e11fc6dc3dc8a95c9de429091bd660146c Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Sun, 20 Dec 2020 23:44:33 -0800 Subject: [PATCH] website: Fix vercel redirect --- vercel.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/vercel.json b/vercel.json index c27a6f9..fac2a75 100644 --- a/vercel.json +++ b/vercel.json @@ -1,10 +1,14 @@ { "version": 2, - "routes": [{"handle": "filesystem"}, {"src": "/.*", "dest": "/index.html"}], - "redirects": [ + "routes": [ + {"handle": "filesystem"}, { - "source": "/manual", - "destination": "https://www.notion.so/Prolink-Tools-User-Manual-1c0e5b28732b435a9804b992939ed791" - } + "src": "/manual", + "status": 302, + "headers": { + "Location": "https://www.notion.so/Prolink-Tools-User-Manual-1c0e5b28732b435a9804b992939ed791" + } + }, + {"src": "/.*", "dest": "/index.html"} ] }