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