import type { NextConfig } from "next"; const nextConfig: NextConfig = { // A stray lockfile exists in the parent directory; pin the workspace root. turbopack: { root: __dirname }, // Minimal self-contained server bundle for the Docker image (see Dockerfile). output: "standalone", }; export default nextConfig;