import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Emit .next/standalone (server.js + traced node_modules) for a small // self-contained Docker image — used by the Hugging Face Space runtime. // Ref: node_modules/next/dist/docs/.../next-config-js/output.md output: "standalone", }; export default nextConfig;