import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Not using output: "standalone" — file-tracing only copies argon2's // native .node binaries, not its JS loader, causing a segfault in // production (same issue hit in the sibling project-claude repo). // Deploying with the full node_modules via `next start` is simple // enough for a single-VM deployment. }; export default nextConfig;