import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Standalone output: the frontend image runs `node server.js` from // distroless with no node_modules — required for the air-gapped bundle. output: "standalone", }; export default nextConfig;