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

11 lines
173 B
JavaScript
Raw Normal View History

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