import type { NextConfig } from "next"; /* * Unlike web/, this app does NOT proxy /api through a rewrite. The browser * calls admin directly, so NEXT_PUBLIC_ADMIN_API_URL must be reachable from the * browser and must appear in admin's ADMIN_ORIGIN. lib/api.ts renders an * explicit not-connected state when it is not. */ const nextConfig: NextConfig = { output: "standalone", }; export default nextConfig;