9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Emit a self-contained server bundle (.next/standalone) for a lean
|
|
// production Docker image (`node server.js`).
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|