Files
ai-toolkit/ui/next.config.ts
2025-02-20 12:47:01 -07:00

13 lines
214 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
experimental: {
serverActions: {
bodySizeLimit: '100mb',
},
},
};
export default nextConfig;