Nano_Banana_Editor / next.config.ts
Reubencf's picture
Upload 42 files
dbc2c2a verified
raw
history blame contribute delete
334 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',
},
};
export default nextConfig;