File size: 334 Bytes
94c3f2a
 
 
 
ec49af2
 
7c5d018
 
 
 
94c3f2a
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  // Enable standalone output for Docker deployment
  output: 'standalone',
  // Increase body size limit for API routes to handle large images
  serverRuntimeConfig: {
    bodySizeLimit: '50mb',
  },
};

export default nextConfig;