From 0263b4aaa70594fa0e98f9d3650db2e03f668ac9 Mon Sep 17 00:00:00 2001 From: Chris Schofield Date: Thu, 20 Aug 2026 00:27:57 +0000 Subject: [PATCH] fix(web): serve subpages at clean URLs (#9) The header nav links to /best-tools, /how-it-works, /pricing-compare and /proof, but the multi-page Vite build only emits best-tools.html etc, so every nav link 404ed. cleanUrls makes Vercel serve the .html files at their extensionless paths. --- web/vercel.json | 1 + 1 file changed, 1 insertion(+) diff --git a/web/vercel.json b/web/vercel.json index 8e31ad1..76d88ee 100644 --- a/web/vercel.json +++ b/web/vercel.json @@ -1,5 +1,6 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", + "cleanUrls": true, "headers": [ { "source": "/(.*)",