import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Emit a self-contained server bundle (.next/standalone) for a lean // production Docker image (`node server.js`). output: "standalone", }; export default nextConfig;