/** @type {import('next').NextConfig} */ const nextConfig = { // Static HTML at build time — the page has no server work to do, and // infrastructure/docker/Dockerfile.web already serves an `out/` directory // through nginx. Also means NEXT_PUBLIC_* is inlined at build time, so the // two destination URLs must be passed as Docker build args, not runtime env. output: 'export', reactStrictMode: true, // No image optimizer exists behind a static export. images: { unoptimized: true }, }; export default nextConfig;