Files
agent-chat-ui/next.config.mjs
2025-05-15 16:42:04 -07:00

11 lines
173 B
JavaScript

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