From bd6703b24bdf4f2ad195dfd8be54f00790fb0187 Mon Sep 17 00:00:00 2001 From: Gemini Agent Date: Sat, 24 Jan 2026 06:37:47 +0000 Subject: [PATCH] Add assetPrefix for Tailscale funnel path routing Assets need to be prefixed with /quietthanks so browsers request them at the correct path when the app is served under /quietthanks. Tailscale strips the prefix when proxying to the backend. Co-Authored-By: Claude Opus 4.5 --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index 68a6c64..033379b 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", + assetPrefix: "/quietthanks", }; export default nextConfig;