Nano_Banana_Editor / next.config.ts
Reubencf's picture
Upload 38 files
f09b9f0 verified
raw
history blame
398 Bytes
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',
},
api: {
bodyParser: {
sizeLimit: '50mb',
},
},
};
export default nextConfig;