From 63fda3caec993dd34cafa7d1f692fe1521397e0d Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Thu, 29 Jan 2026 23:37:00 +0000 Subject: [PATCH] fix: add vercel.json to redirect trailing slashes URLs with trailing slashes (e.g. /protocol/) were returning 500 errors. This adds vercel.json with trailingSlash: false to automatically redirect trailing slash URLs to their canonical non-slash versions. --- vercel.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..57f2a935 --- /dev/null +++ b/vercel.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "trailingSlash": false +}