import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // Produces `.next/standalone` output for easier production deployments (including cPanel/Passenger).
  // Note: this does NOT reduce memory usage during `next build` itself; it helps at runtime/packaging.
  output: "standalone",
};

export default nextConfig;
