9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Enable standalone output for Docker
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|