Files
agent-chat-ui/next.config.mjs

11 lines
191 B
JavaScript
Raw Normal View History

2025-04-10 11:47:43 -07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
};
2025-04-10 11:47:43 -07:00
export default nextConfig;