import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // Produces a self-contained server bundle in .next/standalone for a small
  // production Docker image.
  output: "standalone",
};

export default nextConfig;
