import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", // Pin the workspace root to this project. A stray package-lock.json in the // parent directory otherwise makes Turbopack infer the wrong root and crash. turbopack: { root: __dirname }, }; export default nextConfig;