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 <noreply@anthropic.com>
This commit is contained in:
Gemini Agent
2026-01-24 06:37:47 +00:00
parent 1455b0acd1
commit bd6703b24b

View File

@@ -2,6 +2,7 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone", output: "standalone",
assetPrefix: "/quietthanks",
}; };
export default nextConfig; export default nextConfig;