Files
agent-chat-ui/next.config.mjs
2025-05-15 15:41:18 -07:00

11 lines
191 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
};
export default nextConfig;