From 435a14e00867643adffd45f234f689ababae23ec Mon Sep 17 00:00:00 2001 From: prototypa Date: Sat, 13 Aug 2022 04:03:25 -0400 Subject: [PATCH] Add cleanUrls and trailingSlash to vercel.json --- vercel.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/vercel.json b/vercel.json index ad87958..f1abe8f 100644 --- a/vercel.json +++ b/vercel.json @@ -1,6 +1,8 @@ { - "routes": [ - { "handle": "filesystem" }, - { "src": "/(.*)", "status": 404, "dest": "/404.html" } - ] - } \ No newline at end of file + "cleanUrls": true, + "trailingSlash": false, + "routes": [ + { "handle": "filesystem" }, + { "src": "/(.*)", "status": 404, "dest": "/404.html" } + ] +}