10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
// Standalone output, matching web/: the build emits a self-contained server
|
|
// bundle that runs under Node in the runtime image.
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|