From 32a5145d8f16f20f9dbee90f5d37a0158e0492a1 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 16 Oct 2025 14:20:58 +0200 Subject: [PATCH] chore(vercel): route /a/* to article OG handler --- vercel.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vercel.json b/vercel.json index f9c6977a..61c5c4fb 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,9 @@ { "rewrites": [ + { + "source": "/a/(.*)", + "destination": "/api/article-og?naddr=$1" + }, { "source": "/(.*)", "destination": "/index.html"