import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  // Standalone output: minimal server bundle, lower memory on production (4GB droplet).
  output: "standalone",
  // Empty turbopack config to use Turbopack (default in Next.js 16)
  turbopack: {},
};

export default nextConfig;
