9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
poweredByHeader: false,
|
|
...(process.env.NEXT_OUTPUT_MODE === "standalone" ? { output: "standalone" as const } : {}),
|
|
};
|
|
|
|
export default nextConfig;
|