From eee4f141ec755bc63bb6dde58ca7d52a1a6c7df9 Mon Sep 17 00:00:00 2001 From: Zygimantas <5236121+Zygimantass@users.noreply.github.com> Date: Fri, 6 Feb 2026 21:53:03 +0100 Subject: [PATCH] feat: add faucet redirect --- vercel.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..d97debb8 --- /dev/null +++ b/vercel.json @@ -0,0 +1,10 @@ +{ + "redirects": [ + { + "source": "/:path*", + "has": [{ "type": "host", "value": "faucet.tempo.xyz" }], + "destination": "https://docs.tempo.xyz/quickstart/faucet", + "permanent": false + } + ] +}