import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ experimental: { serverActions: { // Set this higher than your MAX_FILE_SIZE in upload-view.tsx bodySizeLimit: '150mb', }, }, }; export default nextConfig;