Files
quietthanks/next.config.ts
Gemini Agent bd6703b24b 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>
2026-01-24 06:37:47 +00:00

9 lines
160 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
assetPrefix: "/quietthanks",
};
export default nextConfig;