13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
|
|
import type { NextConfig } from 'next';
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
// Standalone output for Docker deployment
|
||
|
|
output: 'standalone',
|
||
|
|
// For static export (nginx), uncomment:
|
||
|
|
// output: 'export',
|
||
|
|
// images: { unoptimized: true },
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|